summaryrefslogtreecommitdiffstats
path: root/.xinitrc
blob: e616e8e76a9b28387ca08f07e33efb2a596ac862 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

startfluxbox

rm -f ~/.xsessionmanage
mkfifo -m 0600 ~/.xsessionmanage
while read action; do
	case "${action}" in
		'quit')
			break
			;;
	esac
done <~/.xsessionmanage
rm -f ~/.xsessionmanage