-
Notifications
You must be signed in to change notification settings - Fork 0
/
xsession
executable file
·53 lines (33 loc) · 1 KB
/
xsession
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/usr/bin/env bash
export XDG_CONFIG_HOME=$HOME/.config
[[ -f ~/.Xresources ]] && xrdb -merge -I$HOME ~/.Xresources
urxvtd -q -f -o
xsetroot -cursor_name left_ptr &
# See for description of properties:
# https://www.x.org/wiki/Development/Documentation/PointerAcceleration/
# acceleration profile
xinput set-prop \
'Kensington Kensington Slimblade Trackball' \
'Device Accel Profile' \
2 # polynomial
# # pointer acceleration
# xinput set-prop \
# 'Kensington Kensington Slimblade Trackball' \
# 'Device Accel Constant Deceleration' \
# 0.5
xinput set-prop \
'Kensington Kensington Slimblade Trackball' \
'Device Accel Adaptive Deceleration' \
1
xsettingsd &
compton -b
# ~/.xsession-background
xscreensaver -no-capture-stderr -no-splash &
parcellite &
nm-applet &
pa-applet &
blueman-applet &
eval $(keychain --eval --agents ssh,gpg --noask)
emacs --daemon &
[[ -f ~/.xsession-custom ]] && source ~/.xsession-custom
exec xmonad