preseed/desktop/sway/ffrun.sh
2025-12-27 15:18:10 +01:00

11 lines
234 B
Bash
Executable file

#!/usr/bin/env bash
APP_NAME="firefox-esr"
APP_COMMAND="firefox-esr"
while true; do
if ! pgrep -x "$APP_NAME" > /dev/null; then
swaymsg exec "$APP_COMMAND"
fi
sleep 1 # Wait a second before checking again
done