28 lines
441 B
Bash
Executable file
28 lines
441 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Some UI stuff
|
|
nitrogen --restore
|
|
nice ~/.config/scripts/bar.sh &
|
|
|
|
# Battery observer
|
|
nice -n 20 ~/.config/scripts/batteryobserver.sh &
|
|
|
|
# Composition manager
|
|
compton -b
|
|
|
|
# Automounting
|
|
thunder --daemon &
|
|
udsikie -2 -N &
|
|
|
|
# Autolocking
|
|
xss-lock -- ~/.config/scripts/lock.sh &
|
|
|
|
# Auto hiding mouse
|
|
unclutter &
|
|
|
|
# Autostart programs
|
|
( sleep 3; (
|
|
nice thunderbird &
|
|
nice psi-plus &
|
|
nice urxvt -name "Weechat" -e "weechat" &
|
|
) ) &
|