Files
dotfiles/.local/bin/station-restart-app

8 lines
203 B
Plaintext
Raw Permalink Normal View History

2026-03-04 21:22:35 +00:00
#!/bin/bash
# Restart an application by killing it and relaunching via uwsm.
# Usage: station-restart-app <application-name> [application-args...]
pkill -x $1
setsid uwsm-app -- "$@" >/dev/null 2>&1 &