blob: ce94488890104bb09b908e897ba2d134f44d320c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/bash
killall trayer
run-trayer.sh &
killall xmobar-top
xmobar-top $* &
killall xmobar-bottom
if pidof spotify>/dev/null; then
xmobar-bottom $* spotify &
else
xmobar-bottom $* mpd &
fi
|