├── Default.bttpreset ├── External Display ├── Clamshell Mode: OFF.kmmacros ├── Display Utilities.kmmacros ├── No Clamshell Mode.kmmacros └── README.md ├── Low Power Mode ├── Low Power Mode.app │ └── Contents │ │ ├── Info.plist │ │ ├── LowPowerMode.py │ │ ├── MacOS │ │ └── Application Stub │ │ ├── Resources │ │ ├── AutomatorApplet.icns │ │ ├── ar.lproj │ │ │ └── InfoPlist.strings │ │ ├── ca.lproj │ │ │ └── InfoPlist.strings │ │ ├── cs.lproj │ │ │ └── InfoPlist.strings │ │ ├── da.lproj │ │ │ └── InfoPlist.strings │ │ ├── de.lproj │ │ │ └── InfoPlist.strings │ │ ├── el.lproj │ │ │ └── InfoPlist.strings │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ ├── en_AU.lproj │ │ │ └── InfoPlist.strings │ │ ├── en_GB.lproj │ │ │ └── InfoPlist.strings │ │ ├── es.lproj │ │ │ └── InfoPlist.strings │ │ ├── es_419.lproj │ │ │ └── InfoPlist.strings │ │ ├── fi.lproj │ │ │ └── InfoPlist.strings │ │ ├── fr.lproj │ │ │ └── InfoPlist.strings │ │ ├── fr_CA.lproj │ │ │ └── InfoPlist.strings │ │ ├── he.lproj │ │ │ └── InfoPlist.strings │ │ ├── hi.lproj │ │ │ └── InfoPlist.strings │ │ ├── hr.lproj │ │ │ └── InfoPlist.strings │ │ ├── hu.lproj │ │ │ └── InfoPlist.strings │ │ ├── id.lproj │ │ │ └── InfoPlist.strings │ │ ├── it.lproj │ │ │ └── InfoPlist.strings │ │ ├── ja.lproj │ │ │ └── InfoPlist.strings │ │ ├── ko.lproj │ │ │ └── InfoPlist.strings │ │ ├── ms.lproj │ │ │ └── InfoPlist.strings │ │ ├── nl.lproj │ │ │ └── InfoPlist.strings │ │ ├── no.lproj │ │ │ └── InfoPlist.strings │ │ ├── pl.lproj │ │ │ └── InfoPlist.strings │ │ ├── pt.lproj │ │ │ └── InfoPlist.strings │ │ ├── pt_PT.lproj │ │ │ └── InfoPlist.strings │ │ ├── ro.lproj │ │ │ └── InfoPlist.strings │ │ ├── ru.lproj │ │ │ └── InfoPlist.strings │ │ ├── sk.lproj │ │ │ └── InfoPlist.strings │ │ ├── sv.lproj │ │ │ └── InfoPlist.strings │ │ ├── th.lproj │ │ │ └── InfoPlist.strings │ │ ├── tr.lproj │ │ │ └── InfoPlist.strings │ │ ├── uk.lproj │ │ │ └── InfoPlist.strings │ │ ├── vi.lproj │ │ │ └── InfoPlist.strings │ │ ├── zh_CN.lproj │ │ │ └── InfoPlist.strings │ │ ├── zh_HK.lproj │ │ │ └── InfoPlist.strings │ │ └── zh_TW.lproj │ │ │ └── InfoPlist.strings │ │ └── document.wflow ├── LowPowerMode.bttpreset └── README.md ├── README.md ├── To Capitalized.kmmacros ├── Video Editing ├── 10gbps-External-Drive-Icons │ ├── icns │ │ ├── USB10gbpsIcon-v1.icns │ │ └── USB10gbpsIcon-v2.icns │ └── png │ │ ├── USB10gbpsIcon-v1.png │ │ └── USB10gbpsIcon-v2.png ├── Editing Drive Alert.kmmacros ├── FCPX.bttpreset ├── New-Project-Folder-FiScript.sh ├── Quit Video Editing.zip ├── README.md ├── Start-Video-Editing-FiScript.sh ├── Template.zip ├── Video Editing.zip └── folder-icons │ ├── icns │ ├── AUDIO-volume.icns │ ├── CAMERA-camera.icns │ ├── DOWNLOADS-downloads.icns │ ├── EFFECTS-headphones.icns │ ├── IMAGES-pictures.icns │ ├── MIC-mic.icns │ ├── MUSIC-note.icns │ ├── PHOTOS-camera.icns │ ├── SCREENCAP-desktop.icns │ ├── SCREENSHOT-desktop.icns │ └── VIDEO-film.icns │ └── png │ ├── AUDIO-volume.png │ ├── CAMERA-camera.png │ ├── DOWNLOADS-downloads.png │ ├── EFFECTS-headphones.png │ ├── IMAGES-pictures.png │ ├── MIC-mic.png │ ├── MUSIC-note.png │ ├── PHOTOS-camera.png │ ├── SCREENCAP-desktop.png │ ├── SCREENSHOT-desktop.png │ └── VIDEO-film.png └── Yeelight ├── README.md ├── Yeelight.bttpreset ├── run_Yeelight_bulb.scpt └── yeelight_bulb.py /Default.bttpreset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Default.bttpreset -------------------------------------------------------------------------------- /External Display/Clamshell Mode: OFF.kmmacros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/External Display/Clamshell Mode: OFF.kmmacros -------------------------------------------------------------------------------- /External Display/Display Utilities.kmmacros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/External Display/Display Utilities.kmmacros -------------------------------------------------------------------------------- /External Display/No Clamshell Mode.kmmacros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/External Display/No Clamshell Mode.kmmacros -------------------------------------------------------------------------------- /External Display/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/External Display/README.md -------------------------------------------------------------------------------- /Low Power Mode/Low Power Mode.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Low Power Mode/Low Power Mode.app/Contents/Info.plist -------------------------------------------------------------------------------- /Low Power Mode/Low Power Mode.app/Contents/LowPowerMode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Low Power Mode/Low Power Mode.app/Contents/LowPowerMode.py -------------------------------------------------------------------------------- /Low Power Mode/Low Power Mode.app/Contents/MacOS/Application Stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Low Power Mode/Low Power Mode.app/Contents/MacOS/Application Stub -------------------------------------------------------------------------------- /Low Power Mode/Low Power Mode.app/Contents/Resources/AutomatorApplet.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Low Power Mode/Low Power Mode.app/Contents/Resources/AutomatorApplet.icns -------------------------------------------------------------------------------- /Low Power Mode/Low Power Mode.app/Contents/Resources/ar.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Low Power Mode/Low Power Mode.app/Contents/Resources/ar.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Low Power Mode/Low Power Mode.app/Contents/Resources/ca.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Low Power Mode/Low Power Mode.app/Contents/Resources/ca.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Low Power Mode/Low Power Mode.app/Contents/Resources/cs.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Low Power Mode/Low Power Mode.app/Contents/Resources/cs.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Low Power Mode/Low Power Mode.app/Contents/Resources/da.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Low Power Mode/Low Power Mode.app/Contents/Resources/da.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Low Power Mode/Low Power Mode.app/Contents/Resources/de.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Low Power Mode/Low Power Mode.app/Contents/Resources/de.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Low Power Mode/Low Power Mode.app/Contents/Resources/el.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Low Power Mode/Low Power Mode.app/Contents/Resources/el.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Low Power Mode/Low Power Mode.app/Contents/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Low Power Mode/Low Power Mode.app/Contents/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Low Power Mode/Low Power Mode.app/Contents/Resources/en_AU.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Low Power Mode/Low Power Mode.app/Contents/Resources/en_AU.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Low Power Mode/Low Power Mode.app/Contents/Resources/en_GB.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Low Power Mode/Low Power Mode.app/Contents/Resources/en_GB.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Low Power Mode/Low Power Mode.app/Contents/Resources/es.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Low Power Mode/Low Power Mode.app/Contents/Resources/es.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Low Power Mode/Low Power Mode.app/Contents/Resources/es_419.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Low Power Mode/Low Power Mode.app/Contents/Resources/es_419.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Low Power Mode/Low Power Mode.app/Contents/Resources/fi.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Low Power Mode/Low Power Mode.app/Contents/Resources/fi.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Low Power Mode/Low Power Mode.app/Contents/Resources/fr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Low Power Mode/Low Power Mode.app/Contents/Resources/fr.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Low Power Mode/Low Power Mode.app/Contents/Resources/fr_CA.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Low Power Mode/Low Power Mode.app/Contents/Resources/fr_CA.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Low Power Mode/Low Power Mode.app/Contents/Resources/he.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Low Power Mode/Low Power Mode.app/Contents/Resources/he.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Low Power Mode/Low Power Mode.app/Contents/Resources/hi.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Low Power Mode/Low Power Mode.app/Contents/Resources/hi.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Low Power Mode/Low Power Mode.app/Contents/Resources/hr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Low Power Mode/Low Power Mode.app/Contents/Resources/hr.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Low Power Mode/Low Power Mode.app/Contents/Resources/hu.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Low Power Mode/Low Power Mode.app/Contents/Resources/hu.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Low Power Mode/Low Power Mode.app/Contents/Resources/id.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Low Power Mode/Low Power Mode.app/Contents/Resources/id.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Low Power Mode/Low Power Mode.app/Contents/Resources/it.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Low Power Mode/Low Power Mode.app/Contents/Resources/it.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Low Power Mode/Low Power Mode.app/Contents/Resources/ja.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Low Power Mode/Low Power Mode.app/Contents/Resources/ja.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Low Power Mode/Low Power Mode.app/Contents/Resources/ko.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Low Power Mode/Low Power Mode.app/Contents/Resources/ko.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Low Power Mode/Low Power Mode.app/Contents/Resources/ms.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Low Power Mode/Low Power Mode.app/Contents/Resources/ms.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Low Power Mode/Low Power Mode.app/Contents/Resources/nl.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Low Power Mode/Low Power Mode.app/Contents/Resources/nl.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Low Power Mode/Low Power Mode.app/Contents/Resources/no.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Low Power Mode/Low Power Mode.app/Contents/Resources/no.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Low Power Mode/Low Power Mode.app/Contents/Resources/pl.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Low Power Mode/Low Power Mode.app/Contents/Resources/pl.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Low Power Mode/Low Power Mode.app/Contents/Resources/pt.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Low Power Mode/Low Power Mode.app/Contents/Resources/pt.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Low Power Mode/Low Power Mode.app/Contents/Resources/pt_PT.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Low Power Mode/Low Power Mode.app/Contents/Resources/pt_PT.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Low Power Mode/Low Power Mode.app/Contents/Resources/ro.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Low Power Mode/Low Power Mode.app/Contents/Resources/ro.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Low Power Mode/Low Power Mode.app/Contents/Resources/ru.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Low Power Mode/Low Power Mode.app/Contents/Resources/ru.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Low Power Mode/Low Power Mode.app/Contents/Resources/sk.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Low Power Mode/Low Power Mode.app/Contents/Resources/sk.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Low Power Mode/Low Power Mode.app/Contents/Resources/sv.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Low Power Mode/Low Power Mode.app/Contents/Resources/sv.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Low Power Mode/Low Power Mode.app/Contents/Resources/th.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Low Power Mode/Low Power Mode.app/Contents/Resources/th.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Low Power Mode/Low Power Mode.app/Contents/Resources/tr.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Low Power Mode/Low Power Mode.app/Contents/Resources/tr.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Low Power Mode/Low Power Mode.app/Contents/Resources/uk.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Low Power Mode/Low Power Mode.app/Contents/Resources/uk.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Low Power Mode/Low Power Mode.app/Contents/Resources/vi.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Low Power Mode/Low Power Mode.app/Contents/Resources/vi.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Low Power Mode/Low Power Mode.app/Contents/Resources/zh_CN.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Low Power Mode/Low Power Mode.app/Contents/Resources/zh_CN.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Low Power Mode/Low Power Mode.app/Contents/Resources/zh_HK.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Low Power Mode/Low Power Mode.app/Contents/Resources/zh_HK.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Low Power Mode/Low Power Mode.app/Contents/Resources/zh_TW.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Low Power Mode/Low Power Mode.app/Contents/Resources/zh_TW.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Low Power Mode/Low Power Mode.app/Contents/document.wflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Low Power Mode/Low Power Mode.app/Contents/document.wflow -------------------------------------------------------------------------------- /Low Power Mode/LowPowerMode.bttpreset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Low Power Mode/LowPowerMode.bttpreset -------------------------------------------------------------------------------- /Low Power Mode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Low Power Mode/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/README.md -------------------------------------------------------------------------------- /To Capitalized.kmmacros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/To Capitalized.kmmacros -------------------------------------------------------------------------------- /Video Editing/10gbps-External-Drive-Icons/icns/USB10gbpsIcon-v1.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Video Editing/10gbps-External-Drive-Icons/icns/USB10gbpsIcon-v1.icns -------------------------------------------------------------------------------- /Video Editing/10gbps-External-Drive-Icons/icns/USB10gbpsIcon-v2.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Video Editing/10gbps-External-Drive-Icons/icns/USB10gbpsIcon-v2.icns -------------------------------------------------------------------------------- /Video Editing/10gbps-External-Drive-Icons/png/USB10gbpsIcon-v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Video Editing/10gbps-External-Drive-Icons/png/USB10gbpsIcon-v1.png -------------------------------------------------------------------------------- /Video Editing/10gbps-External-Drive-Icons/png/USB10gbpsIcon-v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Video Editing/10gbps-External-Drive-Icons/png/USB10gbpsIcon-v2.png -------------------------------------------------------------------------------- /Video Editing/Editing Drive Alert.kmmacros: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Video Editing/Editing Drive Alert.kmmacros -------------------------------------------------------------------------------- /Video Editing/FCPX.bttpreset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Video Editing/FCPX.bttpreset -------------------------------------------------------------------------------- /Video Editing/New-Project-Folder-FiScript.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Video Editing/New-Project-Folder-FiScript.sh -------------------------------------------------------------------------------- /Video Editing/Quit Video Editing.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Video Editing/Quit Video Editing.zip -------------------------------------------------------------------------------- /Video Editing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Video Editing/README.md -------------------------------------------------------------------------------- /Video Editing/Start-Video-Editing-FiScript.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Video Editing/Start-Video-Editing-FiScript.sh -------------------------------------------------------------------------------- /Video Editing/Template.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Video Editing/Template.zip -------------------------------------------------------------------------------- /Video Editing/Video Editing.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Video Editing/Video Editing.zip -------------------------------------------------------------------------------- /Video Editing/folder-icons/icns/AUDIO-volume.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Video Editing/folder-icons/icns/AUDIO-volume.icns -------------------------------------------------------------------------------- /Video Editing/folder-icons/icns/CAMERA-camera.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Video Editing/folder-icons/icns/CAMERA-camera.icns -------------------------------------------------------------------------------- /Video Editing/folder-icons/icns/DOWNLOADS-downloads.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Video Editing/folder-icons/icns/DOWNLOADS-downloads.icns -------------------------------------------------------------------------------- /Video Editing/folder-icons/icns/EFFECTS-headphones.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Video Editing/folder-icons/icns/EFFECTS-headphones.icns -------------------------------------------------------------------------------- /Video Editing/folder-icons/icns/IMAGES-pictures.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Video Editing/folder-icons/icns/IMAGES-pictures.icns -------------------------------------------------------------------------------- /Video Editing/folder-icons/icns/MIC-mic.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Video Editing/folder-icons/icns/MIC-mic.icns -------------------------------------------------------------------------------- /Video Editing/folder-icons/icns/MUSIC-note.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Video Editing/folder-icons/icns/MUSIC-note.icns -------------------------------------------------------------------------------- /Video Editing/folder-icons/icns/PHOTOS-camera.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Video Editing/folder-icons/icns/PHOTOS-camera.icns -------------------------------------------------------------------------------- /Video Editing/folder-icons/icns/SCREENCAP-desktop.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Video Editing/folder-icons/icns/SCREENCAP-desktop.icns -------------------------------------------------------------------------------- /Video Editing/folder-icons/icns/SCREENSHOT-desktop.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Video Editing/folder-icons/icns/SCREENSHOT-desktop.icns -------------------------------------------------------------------------------- /Video Editing/folder-icons/icns/VIDEO-film.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Video Editing/folder-icons/icns/VIDEO-film.icns -------------------------------------------------------------------------------- /Video Editing/folder-icons/png/AUDIO-volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Video Editing/folder-icons/png/AUDIO-volume.png -------------------------------------------------------------------------------- /Video Editing/folder-icons/png/CAMERA-camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Video Editing/folder-icons/png/CAMERA-camera.png -------------------------------------------------------------------------------- /Video Editing/folder-icons/png/DOWNLOADS-downloads.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Video Editing/folder-icons/png/DOWNLOADS-downloads.png -------------------------------------------------------------------------------- /Video Editing/folder-icons/png/EFFECTS-headphones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Video Editing/folder-icons/png/EFFECTS-headphones.png -------------------------------------------------------------------------------- /Video Editing/folder-icons/png/IMAGES-pictures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Video Editing/folder-icons/png/IMAGES-pictures.png -------------------------------------------------------------------------------- /Video Editing/folder-icons/png/MIC-mic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Video Editing/folder-icons/png/MIC-mic.png -------------------------------------------------------------------------------- /Video Editing/folder-icons/png/MUSIC-note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Video Editing/folder-icons/png/MUSIC-note.png -------------------------------------------------------------------------------- /Video Editing/folder-icons/png/PHOTOS-camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Video Editing/folder-icons/png/PHOTOS-camera.png -------------------------------------------------------------------------------- /Video Editing/folder-icons/png/SCREENCAP-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Video Editing/folder-icons/png/SCREENCAP-desktop.png -------------------------------------------------------------------------------- /Video Editing/folder-icons/png/SCREENSHOT-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Video Editing/folder-icons/png/SCREENSHOT-desktop.png -------------------------------------------------------------------------------- /Video Editing/folder-icons/png/VIDEO-film.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Video Editing/folder-icons/png/VIDEO-film.png -------------------------------------------------------------------------------- /Yeelight/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Yeelight/README.md -------------------------------------------------------------------------------- /Yeelight/Yeelight.bttpreset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Yeelight/Yeelight.bttpreset -------------------------------------------------------------------------------- /Yeelight/run_Yeelight_bulb.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Yeelight/run_Yeelight_bulb.scpt -------------------------------------------------------------------------------- /Yeelight/yeelight_bulb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JFtechOfficial/mac-automation-scripts/HEAD/Yeelight/yeelight_bulb.py --------------------------------------------------------------------------------