Files
omarchy/bin/omarchy-restart-app
David Heinemeier Hansson 9741b29a7c Describe the rest of the bins
2026-02-07 10:50:48 +01:00

8 lines
179 B
Bash
Executable File

#!/bin/bash
# Restart an application by killing it and relaunching via uwsm.
# Usage: omarchy-restart-app <application-name>
pkill -x $1
setsid uwsm-app -- $1 >/dev/null 2>&1 &