dotfiles/dot_xinitrc

32 lines
506 B
Plaintext
Raw Normal View History

2019-06-08 01:46:49 +02:00
#!/bin/bash
2020-07-27 16:23:36 +02:00
/usr/bin/prime-offload &
2019-06-08 01:46:49 +02:00
userresources=$HOME/.Xresources
usermodmap=$HOME/.Xmodmap
if [ -f "$userresources" ]; then
xrdb -merge "$userresources"
fi
if [ -f "$usermodmap" ]; then
2020-06-15 21:31:49 +02:00
xmodmap "$usermodmap" &
2019-06-08 01:46:49 +02:00
fi
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
2020-07-27 16:23:36 +02:00
2020-06-15 21:31:49 +02:00
xset fp rehash &
xset dpms 30000 30000 30000 &
xset s 30000 30000 &
xcape -e 'Control_L=Escape' &
xbindkeys &
2020-03-18 14:09:24 +01:00
sh $HOME/.fehbg &
2019-07-19 13:35:27 +02:00
dunst &
2019-06-08 01:46:49 +02:00
exec i3