diff options
| -rw-r--r-- | oxwm/.config/oxwm/config.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/oxwm/.config/oxwm/config.lua b/oxwm/.config/oxwm/config.lua index dca2b0b..769211e 100644 --- a/oxwm/.config/oxwm/config.lua +++ b/oxwm/.config/oxwm/config.lua @@ -281,7 +281,7 @@ oxwm.key.bind({ modkey, "Control", "Shift" }, "9", oxwm.tag.toggletag(8)) ------------------------------------------------------------------------------- -- Keychords allow you to bind multiple-key sequences (like Emacs or Vim) -- Format: {{modifiers}, key1}, {{modifiers}, key2}, ... --- Example: Press Mod4+Space, then release and press T to spawn a terminal without auto starting zellij +-- Example: Press Mod4+Space, then release and press T to spawn a terminal without auto starting anything. oxwm.key.chord({ { { modkey }, "Space" }, { {}, "T" } @@ -293,6 +293,8 @@ oxwm.key.chord({ -- Commands to run once when OXWM starts -- Uncomment and modify these examples, or add your own +-- Keycode 108 was found using the exv command and pressing the AltGr key in the popup window. +oxwm.autostart("xmodmap -e 'keycode 108 = Super_R' -e 'add mod4 = Super_R'") -- oxwm.autostart("picom") -- oxwm.autostart("feh --bg-scale ~/wallpaper.jpg") -- oxwm.autostart("dunst") |
