From 298703733a21b67f079dc53040ed69d71b025405 Mon Sep 17 00:00:00 2001 From: Josh Rahm Date: Fri, 2 Feb 2024 15:08:23 -0700 Subject: Remove the Num_Lock key. We do this to have access to mod2 without the stupid Num_Lock key messing it up. Also set right control to mod2. --- setxkbmap.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/setxkbmap.sh b/setxkbmap.sh index d512462..1a58693 100755 --- a/setxkbmap.sh +++ b/setxkbmap.sh @@ -10,6 +10,13 @@ xmodmap <(echo ' remove mod4 = Hyper_L add mod3 = Hyper_L + # Remove Num_Lock, because Num_Lock is stupid and this allows + # us to potentially use mod2 for things! + keycode 77 = NoSymbol + # keycode 51 = Control_R + remove control = Control_R + add mod2 = Control_R + # keycode 222 = semicolon colon paragraph degree # keycode 24 = Control_L # add Control = Control_L -- cgit