i3wm-config/polybar.sh

15 lines
347 B
Bash

#!/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..."