dotfiles/xorg/.xinitrc
2019-12-23 11:45:41 +08:00

31 lines
596 B
Bash

#!/usr/bin/env sh
# Loading the xprofile since display managers also needs the said file.
# This prevents duplicating needed code.
[ -f ~/.xprofile ] && . ~/.xprofile
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
xmodmap $sysmodmap
fi
if [ -f "$userresources" ]; then
xrdb -merge "$userresources"
fi
if [ -f "$usermodmap" ]; then
xmodmap "$usermodmap"
fi
exec bspwm