blob: a66bda6ecb09df9b174087297e50fcc57481365d (
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
26
27
|
#!/bin/sh
runifnot () {
if type $1 >/dev/null; then
echo $1
if [ -z "$(pgrep -Uzachir -f $1)" ]; then
$@ &
fi
fi
}
killandrun () {
if type $1 >/dev/null; then
echo $1
if [ -n "$(pgrep -Uzachir -f $1)" ]; then
pkill -Uzachir $1
fi
$@ &
fi
}
#runifnot runsvdir ~/.runit/runsvdir
notify-sound.sh off &
runifnot swayidle
runifnot mako
killandrun waybar
killandrun swaybg -i ~/background.jpg
[ -x "$XDG_CONFIG_HOME/computerrc.sh" ] && "$XDG_CONFIG_HOME/computerrc.sh"
|