blob: 59be588f3a78da3b288b8713a7626811a148a757 (
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
|
#!/bin/sh
#
# ~/.config/openbox/autostart.sh
#
# Aaron LI
# 2016-01-31
#
# disable X beep
xset b off
# set wallpaper
nitrogen --restore &
pgrep -x redshift || redshift &
pgrep -x urxvtd || urxvtd -q -f -o &
pgrep -x fcitx || fcitx &
pgrep -x tint2 || tint2 &
pgrep -x xcompmgr || xcompmgr &
pgrep -x xscreensaver || xscreensaver -no-splash &
pgrep -x mpd || mpd &
# pgrep -x parcellite || parcellite &
#xfce4-power-manager &
|