-
Notifications
You must be signed in to change notification settings - Fork 0
/
autostart
62 lines (44 loc) · 1.2 KB
/
autostart
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
53
54
55
56
57
58
59
60
61
62
## GNOME PolicyKit and Keyring
eval $(gnome-keyring-daemon -s --components=pkcs11,secrets,ssh,gpg) &
## Set root window colour
hsetroot -solid "#000000" &
## Group start:
## 1. nitrogen - restores wallpaper
## 2. compositor - start
## 3. sleep - give compositor time to start
(\
nitrogen --restore && \
cb-compositor --start && \
sleep 2s \
) &
## Volume control for systray
(sleep 2s && pnmixer) &
## Volume keys daemon
xfce4-volumed &
## Enable power management
xfce4-power-manager &
## Start Thunar Daemon
thunar --daemon &
## Detect and configure touchpad. See 'man synclient' for more info.
if egrep -iq 'touchpad' /proc/bus/input/devices; then
synclient VertEdgeScroll=1 &
synclient TapButton1=1 &
fi
## Start xscreensaver
xscreensaver -no-splash &
## Start Clipboard manager
(sleep 3s && xclip) &
## Set keyboard settings - 250 ms delay and 25 cps (characters per second) repeat rate.
## Adjust the values according to your preferences.
xset r rate 250 25 &
## Turn on/off system beep
xset b off &
# Autostart the Dropbox deamon
(sleep 5s && ~/.dropbox-dist/dropboxd) &
#bluetooth
(sleep 5s && bluetooth-applet) &
#teamviewer
#(teamviewer --daemon start && teamviewer) &
mpd &
nm-applet &
tint2 &