31 lines
944 B
TOML
31 lines
944 B
TOML
# TUI-WM konfiguration – Windows
|
||
|
||
[[panel]]
|
||
position = "top"
|
||
file = "panels/topbar.toml"
|
||
|
||
# ── Keybinds ──────────────────────────────────────────────────────────────────
|
||
# scope = "global" → alltid aktiv, även när en terminal har fokus
|
||
# scope = "wm" → bara aktiv när ingen terminal är fokuserad (default)
|
||
|
||
# Öppna Tui-run kommandodialog (global – funkar alltid)
|
||
[[keybind]]
|
||
key = "ctrl+space"
|
||
scope = "global"
|
||
label = "Öppna kommandodialog"
|
||
action = { type = "spawn_run_dialog" }
|
||
|
||
# Starta ny PowerShell-terminal
|
||
[[keybind]]
|
||
key = "alt+enter"
|
||
scope = "global"
|
||
label = "Ny terminal"
|
||
action = { type = "spawn_terminal", shell = "powershell.exe" }
|
||
|
||
# Avsluta TUI-WM när skrivbordet är fokuserat
|
||
[[keybind]]
|
||
key = "ctrl+q"
|
||
scope = "wm"
|
||
label = "Avsluta TUI-WM"
|
||
action = { type = "exit" }
|