Scripting the Notifications

Sample AppleScript for scripting Power Manager's notifications.

Change the Notify Period

Changes the notify period to ten minutes.

tell application "Power Manager"
    tell Notifications
        set notify period to (60 * 10)
    end tell
end tell