This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/swift | |
| // This script adds an icon in the macOS menu bar that controls the active status of caffeinate. | |
| import AppKit | |
| // The AppDelegate class manages the application's lifecycle and UI. | |
| class AppDelegate: NSObject, NSApplicationDelegate { | |
| // UI Elements |
OlderNewer