blob: ca365f46ba732cbc49d9b37729b7e0c190e575be (
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
|
# executed by startx-not-docked
# for use when dingo is NOT docked
cd ~
# add network, battery, date and time to xsetroot
sh ~/bin/xsetloop-not-docked.sh &
# set default audio device to be laptop speakers
pacmd set-default-sink 1
# set up wallpaper
#nitrogen --head=0 --set-zoom-fill ~/Pictures/Wallpapers/'10-6-Server.jpg' &
# start notifications daemon
notification-daemon &
# apply Xresources
xrdb -merge ~/.Xresources
# make cursor disappear after a couple of seconds
unclutter --idle 4 -root &
# start dwm
redshift -O3500; xset r rate 300 50; exec dwm
|