├── .gitignore ├── LICENSE ├── README.md ├── images ├── demo.gif └── shortcut_example.jpg └── shortcut_enumerator.applescript /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_STORE 2 | *.zip 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMGnotThatGuy/macos_internal_urls/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMGnotThatGuy/macos_internal_urls/HEAD/README.md -------------------------------------------------------------------------------- /images/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMGnotThatGuy/macos_internal_urls/HEAD/images/demo.gif -------------------------------------------------------------------------------- /images/shortcut_example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMGnotThatGuy/macos_internal_urls/HEAD/images/shortcut_example.jpg -------------------------------------------------------------------------------- /shortcut_enumerator.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMGnotThatGuy/macos_internal_urls/HEAD/shortcut_enumerator.applescript --------------------------------------------------------------------------------