dotfiles/.xinitrc

16 lines
335 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
2018-01-03 08:47:21 +01:00
xsetroot -solid \#202020
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
2018-04-04 17:37:05 +02:00
st &
2016-10-10 16:23:16 +02:00
exec dwm