diff options
author | Juan J. Martinez <jjm@usebox.net> | 2023-09-17 20:55:43 +0100 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2023-09-17 20:55:43 +0100 |
commit | e8659f62d684bd9da6a27c86b9d1ea62590a8e0d (patch) | |
tree | 8b4c1343a1cb755d0d7c835d84885d98c1a1dcf5 | |
parent | dfb97b551880aa78bf689ad0557f392c7ff765ef (diff) | |
download | dotnvim-e8659f62d684bd9da6a27c86b9d1ea62590a8e0d.tar.gz dotnvim-e8659f62d684bd9da6a27c86b9d1ea62590a8e0d.zip |
Workaround to this weird keyboard layout
-rw-r--r-- | i3/config | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -13,6 +13,12 @@ exec --no-startup-id /usr/bin/compton -b # Keyboard layout. exec_always --no-startup-id setxkbmap -model pc105 -layout gb -variant extd +# To get home / end with caps lock and left / right +exec_always --no-startup-id xmodmap -e 'keycode 66 = Mode_switch' +exec_always --no-startup-id xmodmap -e 'clear lock' +exec_always --no-startup-id xmodmap -e 'keycode 113 = Left NoSymbol Home' +exec_always --no-startup-id xmodmap -e 'keycode 114 = Right NoSymbol End' + # xss-lock grabs a logind suspend inhibit lock and will use i3lock to lock the # screen before suspend. Use loginctl lock-session to lock your screen. exec --no-startup-id xss-lock --transfer-sleep-lock -- i3lock --nofork |