10 lines
153 B
Bash
Executable File
10 lines
153 B
Bash
Executable File
#!/bin/sh
|
|
|
|
DIR="$HOME/.config/polybar"
|
|
|
|
# Terminate already running bar instances
|
|
pkill polybar
|
|
|
|
# Launch the bar
|
|
polybar -q main -c "$DIR"/config.ini &
|