Add optional service widgets on shell refresh

This commit is contained in:
David Heinemeier Hansson
2026-06-23 16:22:27 +02:00
parent 3fd36802ac
commit b30758dd2d
6 changed files with 197 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
#!/bin/bash
# omarchy:summary=Check whether Dropbox is installed and running
# omarchy:hidden=true
set -euo pipefail
if omarchy-cmd-present dropbox-cli && dropbox-cli running >/dev/null 2>&1; then
exit 0
fi
pgrep -x dropbox >/dev/null 2>&1