dotfiles/polybar/launch.sh
2021-06-04 19:59:17 +02:00

8 lines
261 B
Bash
Executable file

#!/bin/bash
# Terminate already running bar instances
killall -q polybar
# Launch bar
echo "---" | tee -a /tmp/polybar1.log /tmp/polybar2.log
polybar bar --config /home/mg/dotfiles/polybar/config 2>&1 | tee -a /tmp/polybar.log & disown
echo "Bars launched..."