summaryrefslogtreecommitdiff
path: root/dot/xsession
diff options
context:
space:
mode:
Diffstat (limited to 'dot/xsession')
-rw-r--r--dot/xsession10
1 files changed, 10 insertions, 0 deletions
diff --git a/dot/xsession b/dot/xsession
index 8079d49..077702a 100644
--- a/dot/xsession
+++ b/dot/xsession
@@ -14,6 +14,11 @@ xinput --set-prop --type=int --format=8 "SynPS/2 Synaptics TouchPad" "Synaptics
14# Enable tap-to-click on newer thinkpads 14# Enable tap-to-click on newer thinkpads
15xinput set-prop 'SynPS/2 Synaptics TouchPad' 'libinput Tapping Enabled' 1 15xinput set-prop 'SynPS/2 Synaptics TouchPad' 'libinput Tapping Enabled' 1
16 16
17if [ -r ~/.Xresources.local ]
18then
19 xrdb -merge ~/.Xresources.local
20fi
21
17if [ "${DISPLAY%.*}" = :0 ] 22if [ "${DISPLAY%.*}" = :0 ]
18then 23then
19 /usr/lib/notification-daemon/notification-daemon & 24 /usr/lib/notification-daemon/notification-daemon &
@@ -27,6 +32,11 @@ do
27 "$wm" & break 32 "$wm" & break
28done 33done
29 34
35if [ -x ~/.xsession.local ]
36then
37 ~/.xsession.local
38fi
39
30exec perl -e 'wait while 1' 40exec perl -e 'wait while 1'
31xterm # if exec fails 41xterm # if exec fails
32 42