summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDebian Live user <user@debian-BULLSEYE-live-builder-AMD64>2023-04-28 17:27:04 -0400
committerDebian Live user <user@debian-BULLSEYE-live-builder-AMD64>2023-04-28 17:33:42 -0400
commitd27e806d21cfedcc02cccfa76c2f4d29e2ace081 (patch)
tree99cd60580e759659245660eae35a0f4c0aa5f455
parent7e183e38d8ac3d0fc0d5ab257b63771e5badaa31 (diff)
xsession will load .xsession.local and .Xresources.local
-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