dotfiles/polybar/launch.sh

14 lines
385 B
Bash
Raw Normal View History

2022-07-15 22:12:39 +02:00
#!/usr/bin/env bash
2021-06-04 19:59:17 +02:00
# Terminate already running bar instances
killall -q polybar
2022-07-15 22:12:39 +02:00
export DISPLAY=:0
# Launch bar1 and bar2
echo "---" | tee -a /tmp/polybar1.log /tmp/polybar2.log
polybar --config=~/dotfiles/polybar/config oben 2>&1 | tee -a /tmp/polybar1.log & disown
polybar --config=~/dotfiles/polybar/config unten 2>&1 | tee -a /tmp/polybar2.log & disown
echo "Bars launched..."