mirror of
https://codeberg.org/andyscott/dotfiles.git
synced 2024-11-09 14:00:47 -05:00
19 lines
436 B
Text
19 lines
436 B
Text
|
#!/bin/bash
|
||
|
|
||
|
# Terminate already running bar instances
|
||
|
killall -q tint2
|
||
|
|
||
|
# Wait until the processes have been shut down
|
||
|
while pgrep -u $UID -x tint2 >/dev/null; do sleep 1; done
|
||
|
|
||
|
# Launch tint2
|
||
|
tint2 & disown
|
||
|
|
||
|
# Final command won't work without sleep
|
||
|
sleep 1 &&
|
||
|
|
||
|
# Keep tint2 below other windows in fullscreen
|
||
|
if pgrep -x "tint2" > /dev/null ; then
|
||
|
xdo above -t "$(xdo id -N Bspwm -n root | sort | head -n 1)" $(xdo id -n tint2)
|
||
|
fi
|