34 lines
632 B
Bash
34 lines
632 B
Bash
#!/bin/sh
|
|
|
|
# as far as I can tell, this file is only executed when you run startx from the
|
|
# TTY
|
|
|
|
echo '' > "$HOME/.xstartup_log"
|
|
echo "xinitrc" >> "$HOME/.xstartup_log"
|
|
|
|
# load our xprofile
|
|
if [ -f "$HOME/.xprofile" ]; then
|
|
source "$HOME/.xprofile"
|
|
fi
|
|
|
|
if [ -f "$HOME/.fehbg" ]; then
|
|
"$HOME/.fehbg" &
|
|
fi
|
|
|
|
# allow a per-device config to override options
|
|
if [ -f "$HOME/.env_xinitrc" ]; then
|
|
source "$HOME/.env_xinitrc"
|
|
fi
|
|
|
|
# launch optional and helpful apps
|
|
if command -v unclutter >/dev/null 2>&1; then
|
|
unclutter &
|
|
fi
|
|
|
|
if command -v compton >/dev/null 2>&1; then
|
|
compton &
|
|
fi
|
|
|
|
# fire up wm
|
|
exec "$DOTFILES_PATH/de/wmstart"
|