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

. ~/.exports

eval "$(gpg-agent --daemon)"

startfluxbox

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