Skip to content

Instantly share code, notes, and snippets.

@laynax
Created February 13, 2019 13:36
Show Gist options
  • Save laynax/7bbfef17152d44543d3aa51f59fe5ca7 to your computer and use it in GitHub Desktop.
Save laynax/7bbfef17152d44543d3aa51f59fe5ca7 to your computer and use it in GitHub Desktop.
#!/bin/sh
userresources=$HOME/.Xresources
usermodmap=$HOME/.Xmodmap
sysresources=/etc/X11/xinit/.Xresources
sysmodmap=/etc/X11/xinit/.Xmodmap
# merge in defaults and keymaps
if [ -f $sysresources ]; then
xrdb -merge $sysresources
fi
if [ -f $sysmodmap ]; then
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment