1
0
mirror of https://github.com/ViViDboarder/shoestrap.git synced 2025-03-09 17:06:16 +00:00

10 lines
322 B
Plaintext
Raw Normal View History

2021-06-08 18:25:54 -07:00
#! /bin/bash
# if plutil -extract doNotDisturbDate xml1 -o - ~/Library/Preferences/ByHost/com.apple.notificationcenterui.*.plist &> /dev/null; then
if [ "$(defaults -currentHost read ~/Library/Preferences/ByHost/com.apple.notificationcenterui doNotDisturb)" == "1" ]; then
echo "Yes"
else
echo "No"
exit 1
fi