├── .gitignore ├── ApplyColorProfile.swift ├── Headers ├── Bridging-Header.h ├── MonitorPanel.framework │ └── Headers │ │ ├── CDStructures.h │ │ ├── MPDisplay.h │ │ ├── MPDisplayMgr.h │ │ ├── MPDisplayMode.h │ │ ├── MPDisplayModeBucket.h │ │ ├── MPDisplayPreset.h │ │ ├── MonitorPanel.h │ │ └── NSUUID-Compare.h └── OSD.framework │ └── Headers │ ├── OSDManager.h │ └── OSDUIHelperProtocol.h ├── HorizontalMonitorLayout.swift ├── IsCameraOn.swift ├── IsNowPlaying.swift ├── LICENSE ├── Makefile ├── MirrorMacBookToMonitor.swift ├── README.md ├── ReferencePreset.swift ├── RotateDisplay.swift ├── SendMediaKey.swift ├── SetKeyboardBacklight.swift ├── SetNativeBrightness.swift ├── SwapMonitors.swift ├── ToggleHDR.swift ├── VerticalMonitorLayout.swift ├── bin ├── ApplyColorProfile ├── HorizontalMonitorLayout ├── IsCameraOn ├── IsNowPlaying ├── MirrorMacBookToMonitor ├── ReferencePreset ├── RotateDisplay ├── SendMediaKey ├── SetKeyboardBacklight ├── SetNativeBrightness ├── SwapMonitors ├── ToggleHDR ├── VerticalMonitorLayout ├── com.apple.controlcenter.mac-utils.IsNowPlaying ├── runbg └── runfg ├── img └── add-to-shortcuts.svg ├── lib └── Extensions.swift ├── mac-utils.sublime-project ├── runbg.swift └── runfg.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alin23/mac-utils/HEAD/.gitignore -------------------------------------------------------------------------------- /ApplyColorProfile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alin23/mac-utils/HEAD/ApplyColorProfile.swift -------------------------------------------------------------------------------- /Headers/Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alin23/mac-utils/HEAD/Headers/Bridging-Header.h -------------------------------------------------------------------------------- /Headers/MonitorPanel.framework/Headers/CDStructures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alin23/mac-utils/HEAD/Headers/MonitorPanel.framework/Headers/CDStructures.h -------------------------------------------------------------------------------- /Headers/MonitorPanel.framework/Headers/MPDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alin23/mac-utils/HEAD/Headers/MonitorPanel.framework/Headers/MPDisplay.h -------------------------------------------------------------------------------- /Headers/MonitorPanel.framework/Headers/MPDisplayMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alin23/mac-utils/HEAD/Headers/MonitorPanel.framework/Headers/MPDisplayMgr.h -------------------------------------------------------------------------------- /Headers/MonitorPanel.framework/Headers/MPDisplayMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alin23/mac-utils/HEAD/Headers/MonitorPanel.framework/Headers/MPDisplayMode.h -------------------------------------------------------------------------------- /Headers/MonitorPanel.framework/Headers/MPDisplayModeBucket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alin23/mac-utils/HEAD/Headers/MonitorPanel.framework/Headers/MPDisplayModeBucket.h -------------------------------------------------------------------------------- /Headers/MonitorPanel.framework/Headers/MPDisplayPreset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alin23/mac-utils/HEAD/Headers/MonitorPanel.framework/Headers/MPDisplayPreset.h -------------------------------------------------------------------------------- /Headers/MonitorPanel.framework/Headers/MonitorPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alin23/mac-utils/HEAD/Headers/MonitorPanel.framework/Headers/MonitorPanel.h -------------------------------------------------------------------------------- /Headers/MonitorPanel.framework/Headers/NSUUID-Compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alin23/mac-utils/HEAD/Headers/MonitorPanel.framework/Headers/NSUUID-Compare.h -------------------------------------------------------------------------------- /Headers/OSD.framework/Headers/OSDManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alin23/mac-utils/HEAD/Headers/OSD.framework/Headers/OSDManager.h -------------------------------------------------------------------------------- /Headers/OSD.framework/Headers/OSDUIHelperProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alin23/mac-utils/HEAD/Headers/OSD.framework/Headers/OSDUIHelperProtocol.h -------------------------------------------------------------------------------- /HorizontalMonitorLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alin23/mac-utils/HEAD/HorizontalMonitorLayout.swift -------------------------------------------------------------------------------- /IsCameraOn.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alin23/mac-utils/HEAD/IsCameraOn.swift -------------------------------------------------------------------------------- /IsNowPlaying.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alin23/mac-utils/HEAD/IsNowPlaying.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alin23/mac-utils/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alin23/mac-utils/HEAD/Makefile -------------------------------------------------------------------------------- /MirrorMacBookToMonitor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alin23/mac-utils/HEAD/MirrorMacBookToMonitor.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alin23/mac-utils/HEAD/README.md -------------------------------------------------------------------------------- /ReferencePreset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alin23/mac-utils/HEAD/ReferencePreset.swift -------------------------------------------------------------------------------- /RotateDisplay.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alin23/mac-utils/HEAD/RotateDisplay.swift -------------------------------------------------------------------------------- /SendMediaKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alin23/mac-utils/HEAD/SendMediaKey.swift -------------------------------------------------------------------------------- /SetKeyboardBacklight.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alin23/mac-utils/HEAD/SetKeyboardBacklight.swift -------------------------------------------------------------------------------- /SetNativeBrightness.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alin23/mac-utils/HEAD/SetNativeBrightness.swift -------------------------------------------------------------------------------- /SwapMonitors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alin23/mac-utils/HEAD/SwapMonitors.swift -------------------------------------------------------------------------------- /ToggleHDR.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alin23/mac-utils/HEAD/ToggleHDR.swift -------------------------------------------------------------------------------- /VerticalMonitorLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alin23/mac-utils/HEAD/VerticalMonitorLayout.swift -------------------------------------------------------------------------------- /bin/ApplyColorProfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alin23/mac-utils/HEAD/bin/ApplyColorProfile -------------------------------------------------------------------------------- /bin/HorizontalMonitorLayout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alin23/mac-utils/HEAD/bin/HorizontalMonitorLayout -------------------------------------------------------------------------------- /bin/IsCameraOn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alin23/mac-utils/HEAD/bin/IsCameraOn -------------------------------------------------------------------------------- /bin/IsNowPlaying: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alin23/mac-utils/HEAD/bin/IsNowPlaying -------------------------------------------------------------------------------- /bin/MirrorMacBookToMonitor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alin23/mac-utils/HEAD/bin/MirrorMacBookToMonitor -------------------------------------------------------------------------------- /bin/ReferencePreset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alin23/mac-utils/HEAD/bin/ReferencePreset -------------------------------------------------------------------------------- /bin/RotateDisplay: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alin23/mac-utils/HEAD/bin/RotateDisplay -------------------------------------------------------------------------------- /bin/SendMediaKey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alin23/mac-utils/HEAD/bin/SendMediaKey -------------------------------------------------------------------------------- /bin/SetKeyboardBacklight: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alin23/mac-utils/HEAD/bin/SetKeyboardBacklight -------------------------------------------------------------------------------- /bin/SetNativeBrightness: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alin23/mac-utils/HEAD/bin/SetNativeBrightness -------------------------------------------------------------------------------- /bin/SwapMonitors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alin23/mac-utils/HEAD/bin/SwapMonitors -------------------------------------------------------------------------------- /bin/ToggleHDR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alin23/mac-utils/HEAD/bin/ToggleHDR -------------------------------------------------------------------------------- /bin/VerticalMonitorLayout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alin23/mac-utils/HEAD/bin/VerticalMonitorLayout -------------------------------------------------------------------------------- /bin/com.apple.controlcenter.mac-utils.IsNowPlaying: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alin23/mac-utils/HEAD/bin/com.apple.controlcenter.mac-utils.IsNowPlaying -------------------------------------------------------------------------------- /bin/runbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alin23/mac-utils/HEAD/bin/runbg -------------------------------------------------------------------------------- /bin/runfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alin23/mac-utils/HEAD/bin/runfg -------------------------------------------------------------------------------- /img/add-to-shortcuts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alin23/mac-utils/HEAD/img/add-to-shortcuts.svg -------------------------------------------------------------------------------- /lib/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alin23/mac-utils/HEAD/lib/Extensions.swift -------------------------------------------------------------------------------- /mac-utils.sublime-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alin23/mac-utils/HEAD/mac-utils.sublime-project -------------------------------------------------------------------------------- /runbg.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alin23/mac-utils/HEAD/runbg.swift -------------------------------------------------------------------------------- /runfg.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alin23/mac-utils/HEAD/runfg.swift --------------------------------------------------------------------------------