Files
dot-files/artix/polybar/launch.sh
2022-04-24 07:44:06 +02:00

12 lines
296 B
Bash
Executable File

#!/bin/bash
# Terminate already running bar instances
pkill polybar
# If all your bars have ipc enabled, you can also use
# polybar-msg cmd quit
# Launch Polybar, using default config location ~/.config/polybar/config
polybar top | tee -a /tmp/polybar.log & disown
echo "Polybar launched..."