diff options
| author | Blista Kanjo | 2023-06-29 14:58:25 -0400 |
|---|---|---|
| committer | Blista Kanjo | 2023-06-29 14:58:25 -0400 |
| commit | 725045b287d49af10af0f3619de77a630f1d202c (patch) | |
| tree | db7128ff824ba425d05e9f8bd6b7d1eadea486ba | |
| parent | d67b2fa398310ed0bad39869056f7104fb74f829 (diff) | |
refactor: Improved Scroll_Lock support
| -rw-r--r-- | .Xmodmap | 3 | ||||
| -rwxr-xr-x | .config/awesome/keymapper.sh | 5 |
2 files changed, 7 insertions, 1 deletions
@@ -1 +1,4 @@ +! Enable Scroll_Lock Support +clear mod3 add mod3 = Scroll_Lock +add mod3 = ISO_Level5_Shift diff --git a/.config/awesome/keymapper.sh b/.config/awesome/keymapper.sh index 245ab2b..35d44fe 100755 --- a/.config/awesome/keymapper.sh +++ b/.config/awesome/keymapper.sh @@ -1,3 +1,6 @@ #!/bin/sh -input-remapper-control --command stop-all && input-remapper-control --command autoload +input-remapper-control --command stop-all &&\ +input-remapper-control --command autoload &&\ +sleep 1 +if [ -f ~/.Xmodmap ]; then xmodmap ~/.Xmodmap; fi |
