mirror of
https://github.com/basecamp/omarchy.git
synced 2025-07-27 20:29:24 +00:00
9 lines
195 B
Plaintext
9 lines
195 B
Plaintext
![]() |
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
makoctl mode -t do-not-disturb > /dev/null
|
||
|
|
||
|
makoctl mode | grep -q 'do-not-disturb' \
|
||
|
&& notify-send "Silenced notifications" \
|
||
|
|| notify-send "Enabled notifications"
|