10 lines
172 B
Bash
Executable File
10 lines
172 B
Bash
Executable File
#!/usr/bin/bash
|
|
|
|
startd=$(pgrep waybar)
|
|
|
|
if [ -n "$startd" ]; then
|
|
pkill waybar
|
|
else
|
|
waybar -c ~/.config/mango/waybar/config.jsonc -s ~/.config/mango/waybar/style.css
|
|
fi
|