diff options
Diffstat (limited to 'xinitrc')
| -rw-r--r-- | xinitrc | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -1,3 +1,7 @@ +#!/bin/sh + +readonly hostxinit="${XDG_CONFIG_HOME}/host/xinitrc"; + if [ -d /etc/X11/xinit/xinitrc.d ]; then for f in /etc/X11/xinit/xinitrc.d/*; do [ -x "$f" ] && . "$f" @@ -16,4 +20,6 @@ xset -b [ -x "/usr/bin/pulseaudio" ] && exec pulseaudio --start & [ -x "/usr/bin/redshift" ] && exec redshift -l 48.390929:-4.487095 & +[ -f "${hostxinit}" ] && . "${hostxinit}" + exec i3 |
