diff options
Diffstat (limited to 'quickshell/gruvbar/launch.sh')
| -rwxr-xr-x | quickshell/gruvbar/launch.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/quickshell/gruvbar/launch.sh b/quickshell/gruvbar/launch.sh new file mode 100755 index 0000000..a591a40 --- /dev/null +++ b/quickshell/gruvbar/launch.sh @@ -0,0 +1,10 @@ +#!/usr/bin/env bash +set -euo pipefail + +if ! command -v quickshell >/dev/null 2>&1; then + echo "quickshell is not installed. Install it with: sudo pacman -S quickshell" >&2 + exit 1 +fi + +pkill -f "quickshell.*-c gruvbar" 2>/dev/null || true +exec quickshell -c gruvbar |
