Skip to content

Instantly share code, notes, and snippets.

@nehayward
Last active June 26, 2018 16:26
Show Gist options
  • Save nehayward/d5e022ced5487944b7850d622350c1c3 to your computer and use it in GitHub Desktop.
Save nehayward/d5e022ced5487944b7850d622350c1c3 to your computer and use it in GitHub Desktop.
Get the current AppleInterface (Dark or Light)
import Foundation
struct macOSMode {
static var isEnabled: Bool {
get {
return UserDefaults.standard.string(forKey: "AppleInterfaceStyle") == "Dark"
}
set {
toggle(force: newValue)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment