diff options
author | Rafael Marçalo <raroma09@gmail.com> | 2023-04-27 14:03:45 +0100 |
---|---|---|
committer | Rafael Marçalo <raroma09@gmail.com> | 2023-04-27 14:03:45 +0100 |
commit | bcfee6a3b4971e1f3d55b8344a81d288b6cb70d7 (patch) | |
tree | ffe6b5843a7c1eebc06aab56cd188106024f1447 /X11/.config | |
parent | 953c67b9f94368547189e1c48a141c8739614077 (diff) |
Updated xkbmap from command to config file
Diffstat (limited to 'X11/.config')
-rwxr-xr-x | X11/.config/X11/xinitrc | 2 | ||||
-rwxr-xr-x | X11/.config/X11/xkbconfig | 7 |
2 files changed, 8 insertions, 1 deletions
diff --git a/X11/.config/X11/xinitrc b/X11/.config/X11/xinitrc index 3112185..ac71a6a 100755 --- a/X11/.config/X11/xinitrc +++ b/X11/.config/X11/xinitrc @@ -7,9 +7,9 @@ slstatus & xwallpaper --stretch "$WALLPAPER" & picom --config "$XDG_CONFIG_HOME"/picom/picom.conf & numlockx on & -setxkbmap -option caps:super lxsession & xset s off xset -dpms wireplumber & +xkbcomp "$KBCONFIG" "$DISPLAY" exec "$SESSION" diff --git a/X11/.config/X11/xkbconfig b/X11/.config/X11/xkbconfig new file mode 100755 index 0000000..4b4d507 --- /dev/null +++ b/X11/.config/X11/xkbconfig @@ -0,0 +1,7 @@ +xkb_keymap { + xkb_keycodes { include "evdev+aliases(qwerty)" }; + xkb_types { include "complete" }; + xkb_compat { include "complete" }; + xkb_symbols { include "pc+us+inet(evdev)+capslock(super)" }; + xkb_geometry { include "pc(pc105)" }; +}; |