Use uwsm-app instead of uwsm app consistently

This commit is contained in:
David Heinemeier Hansson
2025-10-16 13:59:08 +03:00
parent 94aac3777c
commit 6b1b73b87c
8 changed files with 21 additions and 21 deletions

View File

@@ -2,7 +2,7 @@
# Ensure elephant is running before launching walker
if ! pgrep -x elephant > /dev/null; then
setsid uwsm app -- elephant &
setsid uwsm-app -- elephant &
fi
exec walker "$@"

View File

@@ -12,10 +12,10 @@ if [[ $EUID -eq 0 ]]; then
# Restart services as the script owner
systemd-run --uid="$SCRIPT_OWNER" --setenv=XDG_RUNTIME_DIR="/run/user/$USER_UID" \
bash -c "
setsid uwsm app -- elephant &
setsid uwsm app -- walker --gapplication-service &
setsid uwsm-app -- elephant &
setsid uwsm-app -- walker --gapplication-service &
"
else
setsid uwsm app -- elephant &
setsid uwsm app -- walker --gapplication-service &
setsid uwsm-app -- elephant &
setsid uwsm-app -- walker --gapplication-service &
fi