Files
.dotfiles/.config/hypr/restart_apps.sh
2025-12-29 21:42:34 +11:00

6 lines
125 B
Bash
Executable File

#!/usr/bin/env bash
RUN_STRING=$1
KILL_STRING=${RUN_STRING//" & "/" "}
killall $KILL_STRING || true
exec sh -c "$RUN_STRING"