On OS X 10.8, users can disable Notification Center for a single day. Is there a way to check if it is enabled from the command line?.
|
You actually can find out if the Do Not Disturb is currently enabled or disabled. Notification Center drops a plist in the following location that you can read the value of. Run the following to find the plist file:
Now, you can read the value from the plist you just found by using:
NOTE: your actual filename may be different than what I have listed above. You will see a key called "doNotDisturb" and it will either have a value of 1 or 0 (enabled or disabled) You can also change it's status by doing:
or:
To make the change take effect, you'll need to restart Notification Center by typing:
I've actually written a very simple Automator script so now I can enable/disable the Do Not Disturb for Notification Center with a keyboard shortcut. Very handy. :) |
||||
|
|
|
Probably the best way I can think of is to install terminal notifier and send it a message from the terminal. Install Terminal NotifierTerminal notifier can be installed through Ruby Gems Type: sudo gem install terminal-notifier Send NC a messageType: terminal-notifier -message "The notification center is running" -title "NC Status" If notification center is running you'll get a message that says "The notification center is running" |
|||
|
|
|
At the moment, the ways to interact with Notification Center programmatically (including via the command line) are pretty limited. As InfluenceJamie noted, there's terminal-notifier, which allows you to send notifications from the command line, but sending notifications is pretty much all programs can do at the moment. From my reading of the developer documentation, programs can only send and get information about the specific notifications they send, no status information for Notifcation Center itself, or other notifications. There's also no Applescript interface. So at the moment, you're limited to manually testing whether a notification goes through, as InfluenceJamie suggested, or hoping that someone figures out Apple's private APIs and makes a command line interface. |
|||||||||
|