├── .gitignore ├── 2Do └── AddTaskFromMail.applescript ├── Airmail ├── ComposeMail.applescript └── SaveAttachment.applescript ├── Alfred ├── CompileCommonMark.sh ├── CopyContentToClipboard.sh ├── CopyFileListToClipboard.sh ├── CopyFiles.sh ├── Markdown2Richtext.sh ├── MoveFiles.sh ├── PrependCreationDate.sh └── PrependModificationDate.sh ├── Bookmarklets └── geticon.js ├── Caffeine ├── ToggleCaffeine.applescript └── alfred_CaffeineStatus.applescript ├── Calendar └── addalarms.py ├── Finder ├── OpenDespiteGatekeeper.sh └── RandomizeFolder.applescript ├── Hazel ├── AddToEvernote.applescript ├── CompileCommonMark.sh ├── ConvertImagesForDigitalFrame.sh └── RandomizeFilename.sh ├── Mail ├── ComposeMail.applescript ├── ExportMail.applescript ├── SaveAttachment.applescript └── VacuumIndex.applescript ├── Photos ├── ExportFavorites.applescript ├── SortPicsIntoWeeks.applescript └── TagPhotosWithAlbumNames.applescript ├── README.md ├── TextExpander ├── CreateHTMLSnippets.applescript ├── CreateMediaWikiSnippets.applescript ├── CreateParenthesesSnippets.applescript ├── FindSnippet.applescript ├── MakeLaunchCenterList.applescript ├── MakeLaunchClipboardAction.applescript └── SafariSessionMd.applescript ├── Things ├── AddTask.applescript ├── AddTaskFromAirmail.applescript ├── AddTaskFromMail.applescript ├── Contacts.applescript ├── ParseQuery.applescript ├── ShowTodayTasks.applescript └── ShowTodayTasksCount.applescript ├── _README.md └── iTunes ├── RefreshSelection.applescript └── RenameMusic.sh /.gitignore: -------------------------------------------------------------------------------- 1 | *.scpt 2 | -------------------------------------------------------------------------------- /2Do/AddTaskFromMail.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/osx-script-stuff/HEAD/2Do/AddTaskFromMail.applescript -------------------------------------------------------------------------------- /Airmail/ComposeMail.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/osx-script-stuff/HEAD/Airmail/ComposeMail.applescript -------------------------------------------------------------------------------- /Airmail/SaveAttachment.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/osx-script-stuff/HEAD/Airmail/SaveAttachment.applescript -------------------------------------------------------------------------------- /Alfred/CompileCommonMark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/osx-script-stuff/HEAD/Alfred/CompileCommonMark.sh -------------------------------------------------------------------------------- /Alfred/CopyContentToClipboard.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/osx-script-stuff/HEAD/Alfred/CopyContentToClipboard.sh -------------------------------------------------------------------------------- /Alfred/CopyFileListToClipboard.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/osx-script-stuff/HEAD/Alfred/CopyFileListToClipboard.sh -------------------------------------------------------------------------------- /Alfred/CopyFiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/osx-script-stuff/HEAD/Alfred/CopyFiles.sh -------------------------------------------------------------------------------- /Alfred/Markdown2Richtext.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/osx-script-stuff/HEAD/Alfred/Markdown2Richtext.sh -------------------------------------------------------------------------------- /Alfred/MoveFiles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/osx-script-stuff/HEAD/Alfred/MoveFiles.sh -------------------------------------------------------------------------------- /Alfred/PrependCreationDate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/osx-script-stuff/HEAD/Alfred/PrependCreationDate.sh -------------------------------------------------------------------------------- /Alfred/PrependModificationDate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/osx-script-stuff/HEAD/Alfred/PrependModificationDate.sh -------------------------------------------------------------------------------- /Bookmarklets/geticon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/osx-script-stuff/HEAD/Bookmarklets/geticon.js -------------------------------------------------------------------------------- /Caffeine/ToggleCaffeine.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/osx-script-stuff/HEAD/Caffeine/ToggleCaffeine.applescript -------------------------------------------------------------------------------- /Caffeine/alfred_CaffeineStatus.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/osx-script-stuff/HEAD/Caffeine/alfred_CaffeineStatus.applescript -------------------------------------------------------------------------------- /Calendar/addalarms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/osx-script-stuff/HEAD/Calendar/addalarms.py -------------------------------------------------------------------------------- /Finder/OpenDespiteGatekeeper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/osx-script-stuff/HEAD/Finder/OpenDespiteGatekeeper.sh -------------------------------------------------------------------------------- /Finder/RandomizeFolder.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/osx-script-stuff/HEAD/Finder/RandomizeFolder.applescript -------------------------------------------------------------------------------- /Hazel/AddToEvernote.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/osx-script-stuff/HEAD/Hazel/AddToEvernote.applescript -------------------------------------------------------------------------------- /Hazel/CompileCommonMark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/osx-script-stuff/HEAD/Hazel/CompileCommonMark.sh -------------------------------------------------------------------------------- /Hazel/ConvertImagesForDigitalFrame.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/osx-script-stuff/HEAD/Hazel/ConvertImagesForDigitalFrame.sh -------------------------------------------------------------------------------- /Hazel/RandomizeFilename.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/osx-script-stuff/HEAD/Hazel/RandomizeFilename.sh -------------------------------------------------------------------------------- /Mail/ComposeMail.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/osx-script-stuff/HEAD/Mail/ComposeMail.applescript -------------------------------------------------------------------------------- /Mail/ExportMail.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/osx-script-stuff/HEAD/Mail/ExportMail.applescript -------------------------------------------------------------------------------- /Mail/SaveAttachment.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/osx-script-stuff/HEAD/Mail/SaveAttachment.applescript -------------------------------------------------------------------------------- /Mail/VacuumIndex.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/osx-script-stuff/HEAD/Mail/VacuumIndex.applescript -------------------------------------------------------------------------------- /Photos/ExportFavorites.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/osx-script-stuff/HEAD/Photos/ExportFavorites.applescript -------------------------------------------------------------------------------- /Photos/SortPicsIntoWeeks.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/osx-script-stuff/HEAD/Photos/SortPicsIntoWeeks.applescript -------------------------------------------------------------------------------- /Photos/TagPhotosWithAlbumNames.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/osx-script-stuff/HEAD/Photos/TagPhotosWithAlbumNames.applescript -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/osx-script-stuff/HEAD/README.md -------------------------------------------------------------------------------- /TextExpander/CreateHTMLSnippets.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/osx-script-stuff/HEAD/TextExpander/CreateHTMLSnippets.applescript -------------------------------------------------------------------------------- /TextExpander/CreateMediaWikiSnippets.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/osx-script-stuff/HEAD/TextExpander/CreateMediaWikiSnippets.applescript -------------------------------------------------------------------------------- /TextExpander/CreateParenthesesSnippets.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/osx-script-stuff/HEAD/TextExpander/CreateParenthesesSnippets.applescript -------------------------------------------------------------------------------- /TextExpander/FindSnippet.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/osx-script-stuff/HEAD/TextExpander/FindSnippet.applescript -------------------------------------------------------------------------------- /TextExpander/MakeLaunchCenterList.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/osx-script-stuff/HEAD/TextExpander/MakeLaunchCenterList.applescript -------------------------------------------------------------------------------- /TextExpander/MakeLaunchClipboardAction.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/osx-script-stuff/HEAD/TextExpander/MakeLaunchClipboardAction.applescript -------------------------------------------------------------------------------- /TextExpander/SafariSessionMd.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/osx-script-stuff/HEAD/TextExpander/SafariSessionMd.applescript -------------------------------------------------------------------------------- /Things/AddTask.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/osx-script-stuff/HEAD/Things/AddTask.applescript -------------------------------------------------------------------------------- /Things/AddTaskFromAirmail.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/osx-script-stuff/HEAD/Things/AddTaskFromAirmail.applescript -------------------------------------------------------------------------------- /Things/AddTaskFromMail.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/osx-script-stuff/HEAD/Things/AddTaskFromMail.applescript -------------------------------------------------------------------------------- /Things/Contacts.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/osx-script-stuff/HEAD/Things/Contacts.applescript -------------------------------------------------------------------------------- /Things/ParseQuery.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/osx-script-stuff/HEAD/Things/ParseQuery.applescript -------------------------------------------------------------------------------- /Things/ShowTodayTasks.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/osx-script-stuff/HEAD/Things/ShowTodayTasks.applescript -------------------------------------------------------------------------------- /Things/ShowTodayTasksCount.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/osx-script-stuff/HEAD/Things/ShowTodayTasksCount.applescript -------------------------------------------------------------------------------- /_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/osx-script-stuff/HEAD/_README.md -------------------------------------------------------------------------------- /iTunes/RefreshSelection.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/osx-script-stuff/HEAD/iTunes/RefreshSelection.applescript -------------------------------------------------------------------------------- /iTunes/RenameMusic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jneug/osx-script-stuff/HEAD/iTunes/RenameMusic.sh --------------------------------------------------------------------------------