Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 401 Bytes

2022-12-29_how-to-get-displayid-from-nsscreen-on-macos.md

File metadata and controls

17 lines (14 loc) · 401 Bytes
title createdAt
How to get displayID from NSScreen on macOS?
2022-12-29 04:15:28 UTC

How to get displayID from NSScreen on macOS?

extension NSScreen {
    var displayID: CGDirectDisplayID? {
        return deviceDescription[NSDeviceDescriptionKey(rawValue: "NSScreenNumber")] as? CGDirectDisplayID
    }
}

https://gist.github.com/briankc/025415e25900750f402235dbf1b74e42