diff options
Diffstat (limited to '.xinitrc')
-rw-r--r-- | .xinitrc | 32 |
1 files changed, 6 insertions, 26 deletions
@@ -11,31 +11,11 @@ if [ -d /etc/X11/xinit/xinitrc.d ]; then unset f fi -# turn off Display Power Management Service (DPMS) -xset -dpms -setterm -blank 0 -powerdown 0 - -# turn off black Screensaver -xset s off - -#Screen background feh -shopt -s nullglob - -pics=(~/vimconfig/pictures/b_*) -#echo $pics -len=${#pics[*]} -ran=$(($RANDOM % len)) - -feh --bg-fill ${pics[$ran]} - -xrdb .Xresources - -setxkbmap -layout de -compton & -dunst & - -if [ $DISPLAY -e ":0" ]; then - lxqt-policykit-agent & +if [ -f ~/.files ]; then + source ~/.files + for f in $DOTFILEBASE/xinitrc.d/*; do + [ -x "$f" ] && . "$f" + done + unset f fi -exec i3 |