2013-09-18 18:01:16 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
if [ -d /etc/X11/xinit/xinitrc.d ]; then
|
|
|
|
|
for f in /etc/X11/xinit/xinitrc.d/*; do
|
|
|
|
|
[ -x "$f" ] && . "$f"
|
|
|
|
|
done
|
|
|
|
|
unset f
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
[ -f /etc/xprofile ] && source /etc/xprofile
|
|
|
|
|
[ -f ~/.xprofile ] && source ~/.xprofile
|
|
|
|
|
|
2014-06-14 00:26:03 +02:00
|
|
|
start_wm() {
|
2015-09-25 16:25:48 +02:00
|
|
|
log "starting i3"
|
|
|
|
|
exec i3 -c "$HOME/.i3/config" >> "$LOGDIR/i3/i3.log"
|
2014-06-14 00:26:03 +02:00
|
|
|
}
|
|
|
|
|
|
2015-09-25 16:25:48 +02:00
|
|
|
|
2014-06-14 00:26:03 +02:00
|
|
|
start_wm
|