summaryrefslogtreecommitdiffstats
path: root/.xinitrc
blob: 672cb3e6abc88e0928b93cd7dc3d7d5a077b3b8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/bin/sh

set -eu

PATH='/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games'
PATH="${HOME}/bin:${PATH}"

. ~/.exports

eval "$(gpg-agent --daemon --enable-ssh-support)"
export $(gnome-keyring-daemon --start)

xmodmap "${HOME}/.Xmodmap"
export GTK_IM_MODULE='xim'
export QT_IM_MODULE='xim'
xinput set-prop 'TPPS/2 IBM TrackPoint' 'Evdev Wheel Emulation' 1
xinput set-prop 'TPPS/2 IBM TrackPoint' 'Evdev Wheel Emulation Button' 2
xinput set-prop 'TPPS/2 IBM TrackPoint' 'Evdev Wheel Emulation Timeout' 200
xinput set-prop 'TPPS/2 IBM TrackPoint' 'Evdev Wheel Emulation Axes' 6 7 4 5

startfluxbox

xscreensaver &

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