dotfiles/.xinitrc

14 lines
280 B
Text
Raw Normal View History

2016-10-10 16:23:16 +02:00
#!/bin/bash
if [ -d /etc/X11/xinit/xinitrc.d ] ; then
for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do
[ -x "$f" ] && . "$f"
done
unset f
fi
. $HOME/.bashrc
2016-10-10 20:35:00 +02:00
xsetroot -solid \#579
2016-10-14 14:16:46 +02:00
xmodmap $HOME/.Xmodmap
2016-10-10 16:23:16 +02:00
setxkbmap -option ctrl:nocaps,grp:switch,grp_led:scroll us,se
exec dwm