blob: 0ea051b165d20ff9f895700292bbfde8cf8b3241 (
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
|
# executed by startx
# for use when dingo is DOCKED
cd ~ &
# set up monitors
fixscreen &
# set default audio device to be dock audio jack
pacmd set-default-sink 1
# add weather, date and time to xsetroot
sh ~/bin/xsetloop-docked.sh &
# set up wallpapers
#wallpapers &
# start notifications daemon
notification-daemon &
# apply Xresources
xrdb -merge ~/.Xresources
# make cursor disappear after a couple of seconds
unclutter --idle 4 -root &
# enable numlock
numlockx &
# start dwm
redshift -O3500; xset r rate 300 50; exec dwm
|