diff options
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 |