diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2017-12-19 12:43:59 +0100 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2017-12-19 12:43:59 +0100 |
commit | f620b2a2f71cc3df7a714c0a829615df82b1a1cd (patch) | |
tree | 8034e634c2a8130ab64d6286a8c2967059a46449 /X11/xinitrc | |
parent | 0430bfc3144b2219bf53306816c5331e7c96c9db (diff) | |
download | dotfiles-f620b2a2f71cc3df7a714c0a829615df82b1a1cd.tar.xz |
Unbreak shift+space on lithium
For some reason the default space keycode on the x270 with a Swedish
keyboard at least, includes a bunch of more crap, but doesn't support
shift+space.
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
Diffstat (limited to 'X11/xinitrc')
-rwxr-xr-x | X11/xinitrc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/X11/xinitrc b/X11/xinitrc index e184715..3c2c54d 100755 --- a/X11/xinitrc +++ b/X11/xinitrc @@ -7,6 +7,10 @@ systemctl --user import-environment DISPLAY XAUTHORITY SSH_AGENT_PID SSH_AUTH_SOCK systemctl --user restart dumpwatch -xmodmap "$XDG_CONFIG_HOME"/X11/Xmodmap +XMODMAP="$XDG_CONFIG_HOME"/X11/Xmodmap +xmodmap "$XMODMAP" +if [[ -f "$XMODMAP"-"$(hostname -s)" ]]; then + xmodmap "$XMODMAP"-"$(hostname -s)" +fi exec i3 -c "$XDG_CONFIG_HOME"/i3/config |