mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-05 20:28:25 +02:00
9 lines
222 B
Bash
Executable File
9 lines
222 B
Bash
Executable File
#!/bin/bash
|
|
|
|
state=$(omarchy-shell notifications isDnd 2>/dev/null || echo off)
|
|
if [[ $state == "on" ]]; then
|
|
echo '{"text": "", "tooltip": "Notifications silenced", "class": "active"}'
|
|
else
|
|
echo '{"text": ""}'
|
|
fi
|