dotfiles/dot_local/bin/executable_tint2-launcher

20 lines
500 B
Text
Raw Normal View History

2022-12-22 04:07:12 -05:00
#!/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
2023-03-23 20:02:58 -04:00
echo "---" | tee -a /tmp/tint2.log
tint2 2>&1 | tee -a /tmp/tint2.log & disown
2022-12-22 04:07:12 -05:00
# 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