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.
14 lines
421 B
14 lines
421 B
3 years ago
|
#!/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..."
|