mirror of
https://github.com/UberGuidoZ/Flipper.git
synced 2024-12-22 14:30:21 +00:00
29 lines
485 B
Plaintext
29 lines
485 B
Plaintext
|
REM This script opens the Terminal application
|
||
|
REM runs commands to toggle the Dark Mode, and then closes the Terminal.
|
||
|
|
||
|
REM Author: Narsty
|
||
|
REM Title: Dark Mode Toggler
|
||
|
REM Target: MacOS
|
||
|
REM Version: 1.0
|
||
|
REM Category: GOODUSB
|
||
|
|
||
|
|
||
|
REM Title: Dark Mode Enabler
|
||
|
REM Author: Narsty
|
||
|
|
||
|
|
||
|
ID 05ac:021e Apple:Keyboard
|
||
|
DELAY 1000
|
||
|
GUI SPACE
|
||
|
DELAY 500
|
||
|
STRING terminal
|
||
|
DELAY 500
|
||
|
ENTER
|
||
|
DELAY 1000
|
||
|
STRING defaults write -g AppleInterfaceStyle Dark
|
||
|
ENTER
|
||
|
DELAY 500
|
||
|
STRING killall Dock
|
||
|
ENTER
|
||
|
DELAY 1000
|