├── Applications ├── AppleScript Editor │ └── Comment.applescript ├── Aurora │ ├── Bookmarks Sidebar.sh │ ├── Bookmarks Toolbar.sh │ ├── Show All Bookmarks.sh │ └── Stylish Sidebar.sh ├── Finder │ ├── Append Current Date to File Name.scpt │ ├── Append Modified Date to File Name.scpt │ ├── Change Icon.scpt │ ├── Compress with Keka.applescript │ ├── Diff Selected Files.scpt │ ├── Edit with TextMate 2.applescript │ ├── Edit with TextMate.applescript │ ├── Go │ │ ├── Downloads.applescript │ │ ├── Favorites.applescript │ │ ├── Fonts (local).applescript │ │ ├── Fonts (system).applescript │ │ ├── Fonts (user).applescript │ │ ├── Home.applescript │ │ ├── Library (local).applescript │ │ ├── Library (system).applescript │ │ ├── Library (user).applescript │ │ ├── Movies.applescript │ │ ├── Music.applescript │ │ ├── Pictures.applescript │ │ ├── Preferences.applescript │ │ ├── Public.applescript │ │ ├── Scripts.applescript │ │ ├── Shared Documents.applescript │ │ ├── Sites.applescript │ │ ├── Speakable Items.applescript │ │ ├── Temporary Items.applescript │ │ ├── Trash.applescript │ │ └── Workflows.applescript │ ├── Group Selected Files.applescript │ ├── Images │ │ ├── Convert Image Format.scpt │ │ ├── Crush Images.scpt │ │ ├── Scale Image.applescript │ │ └── Upload to imgur.sh │ ├── Show Metadata.applescript │ ├── Toggle Hide extension.applescript │ └── View Options │ │ ├── Calculate all sizes.applescript │ │ ├── Decrease Icon Size.scpt │ │ ├── Increase Icon Size.scpt │ │ ├── Reset Window.applescript │ │ ├── Show icon preview.applescript │ │ └── Show item info.applescript ├── Firefox │ ├── Bookmarks Sidebar.sh │ ├── Bookmarks Toolbar.sh │ ├── Send to Chromium.scpt │ ├── Send to Google Chrome.scpt │ ├── Send to Opera.scpt │ ├── Send to Safari.scpt │ ├── Send to Webkit.scpt │ ├── Show All Bookmarks.sh │ └── Stylish Sidebar.sh ├── Font Book │ └── Create Font Sample.applescript ├── Google Chrome │ ├── Hide Downloads Bar.applescript │ ├── Send to Canary.applescript │ ├── Send to Chromium.applescript │ ├── Send to Firefox.applescript │ ├── Send to FirefoxAurora.applescript │ ├── Send to Google Chrome.applescript │ ├── Send to Opera.applescript │ ├── Send to Safari.applescript │ └── Send to Webkit.applescript ├── MediaInfo │ ├── View > Easy.sh │ ├── View > HTML.sh │ └── View > Text.sh ├── Safari │ ├── Send to Canary.applescript │ ├── Send to Firefox.applescript │ ├── Send to FirefoxAurora.applescript │ ├── Send to Google Chrome.applescript │ ├── Send to Opera Next.applescript │ ├── Send to Opera.applescript │ └── Send to Webkit.applescript ├── TextEdit │ └── Document Statistics.applescript └── iTunes │ ├── Embed Artwork.applescript │ ├── Music.applescript │ ├── Refresh Track Data.sh │ ├── Remove Embedded Artwork.applescript │ ├── Search for Album Covers.applescript │ ├── Toggle Checkbox.applescript │ └── Tracks with no lyrics.applescript ├── Clipboard to Prowl.scpt ├── Debug ├── Finder Selection.applescript └── Frontmost Application Info.applescript ├── Finder Here.scpt ├── Here to Clipboard.scpt ├── Processes ├── Color Picker.sh ├── xScope.applescript └── xScope.scpt ├── Quit Process.applescript ├── README.md ├── Terminal Here.scpt ├── Windows ├── Close Window.applescript ├── Minimize Window.applescript ├── Side by Side.applescript ├── Snap - bottom left.scpt ├── Snap - bottom right.scpt ├── Snap - top left.scpt ├── Snap - top right.scpt ├── Snap Resize - bottom left.scpt ├── Snap Resize - bottom right.scpt ├── Snap Resize - top left.scpt ├── Snap Resize - top right.scpt └── Zoom Window.applescript └── lib ├── Application ├── CocoaDialog.scpt ├── Finder.scpt ├── Firefox.scpt ├── Font Book.scpt ├── Terminal.scpt ├── TextEdit.scpt ├── com.adobe.Photoshop.scpt ├── com.macromates.textmate.scpt ├── iPhoto.scpt └── iTunes.scpt ├── README.md └── lib.scpt /Applications/AppleScript Editor/Comment.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/AppleScript Editor/Comment.applescript -------------------------------------------------------------------------------- /Applications/Aurora/Bookmarks Sidebar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Aurora/Bookmarks Sidebar.sh -------------------------------------------------------------------------------- /Applications/Aurora/Bookmarks Toolbar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Aurora/Bookmarks Toolbar.sh -------------------------------------------------------------------------------- /Applications/Aurora/Show All Bookmarks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Aurora/Show All Bookmarks.sh -------------------------------------------------------------------------------- /Applications/Aurora/Stylish Sidebar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Aurora/Stylish Sidebar.sh -------------------------------------------------------------------------------- /Applications/Finder/Append Current Date to File Name.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Finder/Append Current Date to File Name.scpt -------------------------------------------------------------------------------- /Applications/Finder/Append Modified Date to File Name.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Finder/Append Modified Date to File Name.scpt -------------------------------------------------------------------------------- /Applications/Finder/Change Icon.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Finder/Change Icon.scpt -------------------------------------------------------------------------------- /Applications/Finder/Compress with Keka.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Finder/Compress with Keka.applescript -------------------------------------------------------------------------------- /Applications/Finder/Diff Selected Files.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Finder/Diff Selected Files.scpt -------------------------------------------------------------------------------- /Applications/Finder/Edit with TextMate 2.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Finder/Edit with TextMate 2.applescript -------------------------------------------------------------------------------- /Applications/Finder/Edit with TextMate.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Finder/Edit with TextMate.applescript -------------------------------------------------------------------------------- /Applications/Finder/Go/Downloads.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Finder/Go/Downloads.applescript -------------------------------------------------------------------------------- /Applications/Finder/Go/Favorites.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Finder/Go/Favorites.applescript -------------------------------------------------------------------------------- /Applications/Finder/Go/Fonts (local).applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Finder/Go/Fonts (local).applescript -------------------------------------------------------------------------------- /Applications/Finder/Go/Fonts (system).applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Finder/Go/Fonts (system).applescript -------------------------------------------------------------------------------- /Applications/Finder/Go/Fonts (user).applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Finder/Go/Fonts (user).applescript -------------------------------------------------------------------------------- /Applications/Finder/Go/Home.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Finder/Go/Home.applescript -------------------------------------------------------------------------------- /Applications/Finder/Go/Library (local).applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Finder/Go/Library (local).applescript -------------------------------------------------------------------------------- /Applications/Finder/Go/Library (system).applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Finder/Go/Library (system).applescript -------------------------------------------------------------------------------- /Applications/Finder/Go/Library (user).applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Finder/Go/Library (user).applescript -------------------------------------------------------------------------------- /Applications/Finder/Go/Movies.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Finder/Go/Movies.applescript -------------------------------------------------------------------------------- /Applications/Finder/Go/Music.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Finder/Go/Music.applescript -------------------------------------------------------------------------------- /Applications/Finder/Go/Pictures.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Finder/Go/Pictures.applescript -------------------------------------------------------------------------------- /Applications/Finder/Go/Preferences.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Finder/Go/Preferences.applescript -------------------------------------------------------------------------------- /Applications/Finder/Go/Public.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Finder/Go/Public.applescript -------------------------------------------------------------------------------- /Applications/Finder/Go/Scripts.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Finder/Go/Scripts.applescript -------------------------------------------------------------------------------- /Applications/Finder/Go/Shared Documents.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Finder/Go/Shared Documents.applescript -------------------------------------------------------------------------------- /Applications/Finder/Go/Sites.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Finder/Go/Sites.applescript -------------------------------------------------------------------------------- /Applications/Finder/Go/Speakable Items.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Finder/Go/Speakable Items.applescript -------------------------------------------------------------------------------- /Applications/Finder/Go/Temporary Items.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Finder/Go/Temporary Items.applescript -------------------------------------------------------------------------------- /Applications/Finder/Go/Trash.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Finder/Go/Trash.applescript -------------------------------------------------------------------------------- /Applications/Finder/Go/Workflows.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Finder/Go/Workflows.applescript -------------------------------------------------------------------------------- /Applications/Finder/Group Selected Files.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Finder/Group Selected Files.applescript -------------------------------------------------------------------------------- /Applications/Finder/Images/Convert Image Format.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Finder/Images/Convert Image Format.scpt -------------------------------------------------------------------------------- /Applications/Finder/Images/Crush Images.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Finder/Images/Crush Images.scpt -------------------------------------------------------------------------------- /Applications/Finder/Images/Scale Image.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Finder/Images/Scale Image.applescript -------------------------------------------------------------------------------- /Applications/Finder/Images/Upload to imgur.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Finder/Images/Upload to imgur.sh -------------------------------------------------------------------------------- /Applications/Finder/Show Metadata.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Finder/Show Metadata.applescript -------------------------------------------------------------------------------- /Applications/Finder/Toggle Hide extension.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Finder/Toggle Hide extension.applescript -------------------------------------------------------------------------------- /Applications/Finder/View Options/Calculate all sizes.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Finder/View Options/Calculate all sizes.applescript -------------------------------------------------------------------------------- /Applications/Finder/View Options/Decrease Icon Size.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Finder/View Options/Decrease Icon Size.scpt -------------------------------------------------------------------------------- /Applications/Finder/View Options/Increase Icon Size.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Finder/View Options/Increase Icon Size.scpt -------------------------------------------------------------------------------- /Applications/Finder/View Options/Reset Window.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Finder/View Options/Reset Window.applescript -------------------------------------------------------------------------------- /Applications/Finder/View Options/Show icon preview.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Finder/View Options/Show icon preview.applescript -------------------------------------------------------------------------------- /Applications/Finder/View Options/Show item info.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Finder/View Options/Show item info.applescript -------------------------------------------------------------------------------- /Applications/Firefox/Bookmarks Sidebar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Firefox/Bookmarks Sidebar.sh -------------------------------------------------------------------------------- /Applications/Firefox/Bookmarks Toolbar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Firefox/Bookmarks Toolbar.sh -------------------------------------------------------------------------------- /Applications/Firefox/Send to Chromium.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Firefox/Send to Chromium.scpt -------------------------------------------------------------------------------- /Applications/Firefox/Send to Google Chrome.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Firefox/Send to Google Chrome.scpt -------------------------------------------------------------------------------- /Applications/Firefox/Send to Opera.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Firefox/Send to Opera.scpt -------------------------------------------------------------------------------- /Applications/Firefox/Send to Safari.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Firefox/Send to Safari.scpt -------------------------------------------------------------------------------- /Applications/Firefox/Send to Webkit.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Firefox/Send to Webkit.scpt -------------------------------------------------------------------------------- /Applications/Firefox/Show All Bookmarks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Firefox/Show All Bookmarks.sh -------------------------------------------------------------------------------- /Applications/Firefox/Stylish Sidebar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Firefox/Stylish Sidebar.sh -------------------------------------------------------------------------------- /Applications/Font Book/Create Font Sample.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Font Book/Create Font Sample.applescript -------------------------------------------------------------------------------- /Applications/Google Chrome/Hide Downloads Bar.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Google Chrome/Hide Downloads Bar.applescript -------------------------------------------------------------------------------- /Applications/Google Chrome/Send to Canary.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Google Chrome/Send to Canary.applescript -------------------------------------------------------------------------------- /Applications/Google Chrome/Send to Chromium.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Google Chrome/Send to Chromium.applescript -------------------------------------------------------------------------------- /Applications/Google Chrome/Send to Firefox.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Google Chrome/Send to Firefox.applescript -------------------------------------------------------------------------------- /Applications/Google Chrome/Send to FirefoxAurora.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Google Chrome/Send to FirefoxAurora.applescript -------------------------------------------------------------------------------- /Applications/Google Chrome/Send to Google Chrome.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Google Chrome/Send to Google Chrome.applescript -------------------------------------------------------------------------------- /Applications/Google Chrome/Send to Opera.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Google Chrome/Send to Opera.applescript -------------------------------------------------------------------------------- /Applications/Google Chrome/Send to Safari.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Google Chrome/Send to Safari.applescript -------------------------------------------------------------------------------- /Applications/Google Chrome/Send to Webkit.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Google Chrome/Send to Webkit.applescript -------------------------------------------------------------------------------- /Applications/MediaInfo/View > Easy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/MediaInfo/View > Easy.sh -------------------------------------------------------------------------------- /Applications/MediaInfo/View > HTML.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/MediaInfo/View > HTML.sh -------------------------------------------------------------------------------- /Applications/MediaInfo/View > Text.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/MediaInfo/View > Text.sh -------------------------------------------------------------------------------- /Applications/Safari/Send to Canary.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Safari/Send to Canary.applescript -------------------------------------------------------------------------------- /Applications/Safari/Send to Firefox.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Safari/Send to Firefox.applescript -------------------------------------------------------------------------------- /Applications/Safari/Send to FirefoxAurora.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Safari/Send to FirefoxAurora.applescript -------------------------------------------------------------------------------- /Applications/Safari/Send to Google Chrome.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Safari/Send to Google Chrome.applescript -------------------------------------------------------------------------------- /Applications/Safari/Send to Opera Next.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Safari/Send to Opera Next.applescript -------------------------------------------------------------------------------- /Applications/Safari/Send to Opera.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Safari/Send to Opera.applescript -------------------------------------------------------------------------------- /Applications/Safari/Send to Webkit.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/Safari/Send to Webkit.applescript -------------------------------------------------------------------------------- /Applications/TextEdit/Document Statistics.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/TextEdit/Document Statistics.applescript -------------------------------------------------------------------------------- /Applications/iTunes/Embed Artwork.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/iTunes/Embed Artwork.applescript -------------------------------------------------------------------------------- /Applications/iTunes/Music.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/iTunes/Music.applescript -------------------------------------------------------------------------------- /Applications/iTunes/Refresh Track Data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/iTunes/Refresh Track Data.sh -------------------------------------------------------------------------------- /Applications/iTunes/Remove Embedded Artwork.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/iTunes/Remove Embedded Artwork.applescript -------------------------------------------------------------------------------- /Applications/iTunes/Search for Album Covers.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/iTunes/Search for Album Covers.applescript -------------------------------------------------------------------------------- /Applications/iTunes/Toggle Checkbox.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/iTunes/Toggle Checkbox.applescript -------------------------------------------------------------------------------- /Applications/iTunes/Tracks with no lyrics.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Applications/iTunes/Tracks with no lyrics.applescript -------------------------------------------------------------------------------- /Clipboard to Prowl.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Clipboard to Prowl.scpt -------------------------------------------------------------------------------- /Debug/Finder Selection.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Debug/Finder Selection.applescript -------------------------------------------------------------------------------- /Debug/Frontmost Application Info.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Debug/Frontmost Application Info.applescript -------------------------------------------------------------------------------- /Finder Here.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Finder Here.scpt -------------------------------------------------------------------------------- /Here to Clipboard.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Here to Clipboard.scpt -------------------------------------------------------------------------------- /Processes/Color Picker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Processes/Color Picker.sh -------------------------------------------------------------------------------- /Processes/xScope.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Processes/xScope.applescript -------------------------------------------------------------------------------- /Processes/xScope.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Processes/xScope.scpt -------------------------------------------------------------------------------- /Quit Process.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Quit Process.applescript -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/README.md -------------------------------------------------------------------------------- /Terminal Here.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Terminal Here.scpt -------------------------------------------------------------------------------- /Windows/Close Window.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Windows/Close Window.applescript -------------------------------------------------------------------------------- /Windows/Minimize Window.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Windows/Minimize Window.applescript -------------------------------------------------------------------------------- /Windows/Side by Side.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Windows/Side by Side.applescript -------------------------------------------------------------------------------- /Windows/Snap - bottom left.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Windows/Snap - bottom left.scpt -------------------------------------------------------------------------------- /Windows/Snap - bottom right.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Windows/Snap - bottom right.scpt -------------------------------------------------------------------------------- /Windows/Snap - top left.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Windows/Snap - top left.scpt -------------------------------------------------------------------------------- /Windows/Snap - top right.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Windows/Snap - top right.scpt -------------------------------------------------------------------------------- /Windows/Snap Resize - bottom left.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Windows/Snap Resize - bottom left.scpt -------------------------------------------------------------------------------- /Windows/Snap Resize - bottom right.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Windows/Snap Resize - bottom right.scpt -------------------------------------------------------------------------------- /Windows/Snap Resize - top left.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Windows/Snap Resize - top left.scpt -------------------------------------------------------------------------------- /Windows/Snap Resize - top right.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Windows/Snap Resize - top right.scpt -------------------------------------------------------------------------------- /Windows/Zoom Window.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/Windows/Zoom Window.applescript -------------------------------------------------------------------------------- /lib/Application/CocoaDialog.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/lib/Application/CocoaDialog.scpt -------------------------------------------------------------------------------- /lib/Application/Finder.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/lib/Application/Finder.scpt -------------------------------------------------------------------------------- /lib/Application/Firefox.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/lib/Application/Firefox.scpt -------------------------------------------------------------------------------- /lib/Application/Font Book.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/lib/Application/Font Book.scpt -------------------------------------------------------------------------------- /lib/Application/Terminal.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/lib/Application/Terminal.scpt -------------------------------------------------------------------------------- /lib/Application/TextEdit.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/lib/Application/TextEdit.scpt -------------------------------------------------------------------------------- /lib/Application/com.adobe.Photoshop.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/lib/Application/com.adobe.Photoshop.scpt -------------------------------------------------------------------------------- /lib/Application/com.macromates.textmate.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/lib/Application/com.macromates.textmate.scpt -------------------------------------------------------------------------------- /lib/Application/iPhoto.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/lib/Application/iPhoto.scpt -------------------------------------------------------------------------------- /lib/Application/iTunes.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/lib/Application/iTunes.scpt -------------------------------------------------------------------------------- /lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/lib/README.md -------------------------------------------------------------------------------- /lib/lib.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buchanansc/AppleScripts/HEAD/lib/lib.scpt --------------------------------------------------------------------------------