base desktop

This commit is contained in:
vieta 2025-12-27 15:18:10 +01:00
commit 4cf6e46a7b
13 changed files with 345 additions and 3 deletions

11
desktop/sway/ffrun.sh Executable file
View file

@ -0,0 +1,11 @@
#!/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