mirror of
https://github.com/MonitorControl/MonitorControl.git
synced 2026-05-15 14:15:55 -06:00
Co-authored-by: Joni Van Roost <joni.VR@hotmail.com> Co-authored-by: Rayan Khan <rayankhan04@iCloud.com> Co-authored-by: Guillaume B <the0neyouseek@users.noreply.github.com>
9 lines
535 B
Swift
9 lines
535 B
Swift
import Cocoa
|
|
|
|
extension NSNotification.Name {
|
|
static let accessibilityApi = NSNotification.Name(rawValue: "com.apple.accessibility.api")
|
|
static let listenFor = NSNotification.Name(rawValue: Utils.PrefKeys.listenFor.rawValue)
|
|
static let friendlyName = NSNotification.Name(rawValue: Utils.PrefKeys.friendlyName.rawValue)
|
|
static let preferenceReset = NSNotification.Name(rawValue: Utils.PrefKeys.preferenceReset.rawValue)
|
|
static let displayListUpdate = NSNotification.Name(rawValue: Utils.PrefKeys.displayListUpdate.rawValue)
|
|
}
|