2015-05-29 20:51:46 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2015-06-13 12:34:08 +02:00
|
|
|
# Some UI stuff
|
|
|
|
nitrogen --restore
|
2015-08-24 03:54:38 +02:00
|
|
|
nice ~/.config/scripts/bar.sh &
|
2015-06-13 12:34:08 +02:00
|
|
|
|
|
|
|
# Battery observer
|
2015-08-24 03:54:38 +02:00
|
|
|
nice -n 20 ~/.config/scripts/batteryobserver.sh &
|
2015-06-13 12:34:08 +02:00
|
|
|
|
|
|
|
# Composition manager
|
2015-06-13 12:55:08 +02:00
|
|
|
compton -b
|
2015-06-13 12:34:08 +02:00
|
|
|
|
|
|
|
# Automounting
|
|
|
|
thunder --daemon &
|
|
|
|
udsikie -2 -N &
|
|
|
|
|
2015-07-10 17:48:23 +02:00
|
|
|
# Autolocking
|
|
|
|
xss-lock -- ~/.config/scripts/lock.sh &
|
|
|
|
|
2015-09-10 02:23:49 +02:00
|
|
|
# Auto hiding mouse
|
|
|
|
unclutter &
|
|
|
|
|
2015-06-13 12:34:08 +02:00
|
|
|
# Autostart programs
|
|
|
|
( sleep 3; (
|
2015-08-24 03:54:38 +02:00
|
|
|
nice thunderbird &
|
|
|
|
nice psi-plus &
|
|
|
|
nice urxvt -name "Weechat" -e "weechat" &
|
2015-06-13 12:34:08 +02:00
|
|
|
) ) &
|