dotfiles/.xinitrc

15 lines
330 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
2017-08-09 09:15:54 +02:00
xsetroot -solid \#668899
2016-10-14 14:16:46 +02:00
xmodmap $HOME/.Xmodmap
2017-03-01 19:44:28 +01:00
feh --bg-fill $HOME/Images/desktop.jpg || true
2016-10-10 16:23:16 +02:00
setxkbmap -option ctrl:nocaps,grp:switch,grp_led:scroll us,se
exec dwm