mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
12 lines
314 B
Bash
Executable File
12 lines
314 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# omarchy:summary=Dismiss a notification by summary substring. Used by the first-run notifications to dismiss them after clicking for action.
|
|
# omarchy:args=<summary>
|
|
|
|
if (($# == 0)); then
|
|
echo "Usage: omarchy-notification-dismiss <summary>"
|
|
exit 1
|
|
fi
|
|
|
|
omarchy-shell -q notifications dismiss "$1"
|