aboutsummaryrefslogtreecommitdiffstats
path: root/dotconfig/polybar/launch.sh
blob: 829d7ac5824a55793fb278b26f28797fa5cd3b3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env bash

# Terminate already running bar instances
killall -9 polybar

# Wait until the processes have been shut down
while pgrep -u $UID -x polybar >/dev/null; do sleep 1; done

# Set variables
NETWORK_TYPE="wired" # or `wireless`

# Launch the bar
echo "---" | tee -a /tmp/mypolybar.log
NETWORK_TYPE=$NETWORK_TYPE polybar main >> /tmp/mypolybar.log 2>&1 & disown
echo "Bar launched..."