21 lines
362 B
Bash
Executable file
21 lines
362 B
Bash
Executable file
#!/bin/bash
|
|
xmodmap ~/.Xmodmap
|
|
|
|
# Source scripts in /etc/X11/xinit/xinitrc.d/
|
|
if [ -d /etc/X11/xinit/xinitrc.d ]; then
|
|
for f in /etc/X11/xinit/xinitrc.d/*; do
|
|
[ -x "$f" ] && . "$f"
|
|
done
|
|
unset f
|
|
fi
|
|
|
|
pidof mpdscribble >& /dev/null
|
|
if [ $? -ne 0 ]
|
|
then
|
|
mpdscribble &
|
|
fi
|
|
|
|
emacs --daemon &
|
|
|
|
test -n "$1" && wm=$1 || wm="herbstluftwm"
|
|
exec $wm
|