13 lines
246 B
Bash
Executable File
13 lines
246 B
Bash
Executable File
#!/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
|