mirror of https://github.com/bvn13/i3wm-config.git
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
347 B
14 lines
347 B
#!/usr/bin/env 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 bar1 and bar2 |
|
echo "---" | tee -a /tmp/polybar1.log /tmp/polybar2.log |
|
polybar --config=$HOME/.config/i3/polybar.conf mybar >>/tmp/polybar1.log 2>&1 & |
|
|
|
echo "Bars launched..."
|
|
|