configfiles/bspwm/.config/bspwm/autostart

32 lines
495 B
Plaintext
Raw Normal View History

2015-05-29 20:51:46 +02:00
#!/bin/bash
2015-06-13 12:34:08 +02:00
# Some UI stuff
nitrogen --restore
# 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 &
2015-12-15 13:05:19 +01:00
udiskie -2 -N &
2015-06-13 12:34:08 +02:00
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
2015-09-25 16:33:09 +02:00
unclutter --timeout 2 -b
2015-09-10 02:23:49 +02:00
2016-11-05 22:27:26 +01:00
# Bars
nice ~/.config/scripts/bar2.sh 2>&1 1>~/.baroutput &
2015-06-13 12:34:08 +02:00
# Autostart programs
( sleep 3; (
2015-08-24 03:54:38 +02:00
nice thunderbird &
2016-12-20 10:26:09 +01:00
#nice pidgin &
nice gajim &
2015-08-24 03:54:38 +02:00
nice urxvt -name "Weechat" -e "weechat" &
2015-06-13 12:34:08 +02:00
) ) &