diff options
author | Alex Auvolat <alex@adnab.me> | 2024-01-11 10:38:37 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2024-01-11 10:38:37 +0100 |
commit | 8f0659b9bc0dc15f60e5d389b22f50b21c435b89 (patch) | |
tree | 870e4ff254ab0e04dce925c4a8c438c364febf22 /sway/config | |
parent | c165a8a6c306b8c527c827e2295a0b246a121681 (diff) | |
download | user-config-8f0659b9bc0dc15f60e5d389b22f50b21c435b89.tar.gz user-config-8f0659b9bc0dc15f60e5d389b22f50b21c435b89.zip |
keyboard: changes
- in sway, use xkb_option to swap lalt and lwin
- remove mapping from caps to escape in xkb symbol file
- use xkb_option to map caps to lwin (for now, but could use caps:escape
in the future)
Diffstat (limited to 'sway/config')
-rw-r--r-- | sway/config | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/sway/config b/sway/config index 2e2f667..74e0921 100644 --- a/sway/config +++ b/sway/config @@ -6,7 +6,11 @@ output 'HDMI-A-2' pos 1920 0 seat '*' hide_cursor 5000 -input "*" xkb_layout 'fr-custom-lx' +input "*" { + xkb_layout 'fr-custom-lx' + xkb_options 'altwin:swap_lalt_lwin,caps:super' + # possible xkb options: localectl list-x11-keymap-options +} # ---- COLORS & THEME ---- @@ -52,10 +56,10 @@ bindsym $mod+Up focus up bindsym $mod+Right focus right # common shortcuts (alt+tab, etc) for moving around -bindsym Mod1+Tab focus next -bindsym Mod1+Shift+Tab focus prev -bindsym Mod1+Ctrl+Right workspace next -bindsym Mod1+Ctrl+Left workspace prev +bindsym $mod+Tab focus next +bindsym $mod+Shift+Tab focus prev +bindsym $mod+Ctrl+Right workspace next +bindsym $mod+Ctrl+Left workspace prev # move focused window bindsym $mod+Shift+H move left |