2021-06-04 19:59:17 +02:00
|
|
|
#!/bin/bash
|
|
|
|
# Terminate already running bar instances
|
|
|
|
killall -q polybar
|
|
|
|
# Launch bar
|
|
|
|
echo "---" | tee -a /tmp/polybar1.log /tmp/polybar2.log
|
2021-06-05 17:42:28 +02:00
|
|
|
polybar --config=/home/mg/dotfiles/polybar/config bar 2>&1 | tee -a /tmp/polybar.log & disown
|
2021-06-04 19:59:17 +02:00
|
|
|
|
|
|
|
echo "Bars launched..."
|