Describe the rest of the bins

This commit is contained in:
David Heinemeier Hansson
2026-02-07 10:50:48 +01:00
parent ea24b0dc68
commit 9741b29a7c
13 changed files with 34 additions and 0 deletions

View File

@@ -1,4 +1,7 @@
#!/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 &