You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

14 lines
421 B

#!/bin/bash
# Terminate already running bar instances
killall -q 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 workspace 2>&1 | tee -a /tmp/polybar.log & disown
polybar system 2>&1 | tee -a /tmp/polybar.log & disown
polybar power 2>&1 | tee -a /tmp/polybar.log & disown
echo "Polybar launched..."