Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions scripts/stoa-doctor.sh
Original file line number Diff line number Diff line change
Expand Up @@ -160,11 +160,12 @@ else
fi

# Notification daemon — Noctalia owns org.freedesktop.Notifications on
# the Hyprland/Wayland path. Match either binary name to cover the
# upstream Quickshell entry point and the noctalia-shell wrapper.
if pgrep -fx 'noctalia-shell' &>/dev/null \
|| pgrep -f 'qs -c noctalia' &>/dev/null \
|| pgrep -fx 'noctalia' &>/dev/null; then
# the Hyprland/Wayland path. stoa-bar launches it as
# `quickshell -c noctalia-shell` (or `qs -c noctalia-shell`); the AUR
# noctalia-shell package also ships a launcher of the same name. Match
# the cmdline substring "noctalia-shell" with pgrep -f so we catch all
# three forms.
if pgrep -f 'noctalia-shell' &>/dev/null; then
_ok "Noctalia Shell is running (notifications)"
else
_warn "Noctalia Shell is not running — notifications won't show"
Expand Down
Loading