Skip to content

Instantly share code, notes, and snippets.

@mhamilt
Created June 20, 2019 12:04
Show Gist options
  • Save mhamilt/0de7d9b00405353411d9511645eebabd to your computer and use it in GitHub Desktop.
Save mhamilt/0de7d9b00405353411d9511645eebabd to your computer and use it in GitHub Desktop.
Get a list of screen IDs from swift
import Foundation
import Cocoa
for screen in NSScreen.screens
{
print(screen.deviceDescription[NSDeviceDescriptionKey("NSScreenNumber")]!);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment