├── .gitignore ├── README.md ├── RELEASE.md ├── media ├── cheatsheet-customize.png ├── cheatsheet-search.png └── cheatsheet.png ├── releases └── Cheatsheet.alfredworkflow ├── src ├── apps │ ├── Finder.py │ ├── RES.py │ ├── __init__.py │ ├── airmail.py │ ├── alfred.py │ ├── asana.py │ ├── automute.py │ ├── chrome.py │ ├── databricks.py │ ├── defaultFolderX.py │ ├── evernote.py │ ├── firefox.py │ ├── forklift.py │ ├── forklift3.py │ ├── github.py │ ├── gmail.py │ ├── googleDocs.py │ ├── googleSheets.py │ ├── icons │ │ ├── Adobe Illustrator.png │ │ ├── Adobe Photoshop.png │ │ ├── Airmail.png │ │ ├── Alfred.png │ │ ├── Asana.png │ │ ├── AutoMute Chrome extension.png │ │ ├── Databricks.png │ │ ├── Default Folder X.png │ │ ├── Evernote.png │ │ ├── Finder.png │ │ ├── Firefox.png │ │ ├── Forklift 3.png │ │ ├── Gmail.png │ │ ├── Google Chrome.png │ │ ├── Google Docs.png │ │ ├── Google Sheets.png │ │ ├── Intellij IDEA (default).png │ │ ├── Jira.png │ │ ├── Mac OSX.png │ │ ├── Microsoft Excel.png │ │ ├── Microsoft Word.png │ │ ├── Opera.png │ │ ├── Outlook.png │ │ ├── Pixelmator.png │ │ ├── Reddit Enhancement Suite.png │ │ ├── Safari.png │ │ ├── Sibelius G7.png │ │ ├── Sketch.png │ │ ├── Slack.png │ │ ├── Spotify.png │ │ ├── Sublime Text.png │ │ ├── Terminal.png │ │ ├── Things.png │ │ ├── Video Speed Controller chrome extension.png │ │ ├── Vimeo.png │ │ ├── Vintage Sublime.png │ │ ├── Visual Studio Code.png │ │ ├── XCode.png │ │ ├── github.com.png │ │ ├── iTerm2.png │ │ ├── trello.com.png │ │ ├── vim.png │ │ ├── youtube.com.png │ │ └── zshell.png │ ├── illustrator.py │ ├── intellij.py │ ├── iterm.py │ ├── jira.py │ ├── macosx.py │ ├── microsoftExcel.py │ ├── microsoftWord.py │ ├── opera.py │ ├── outlook.py │ ├── photoshop.py │ ├── pixelmator.py │ ├── safari.py │ ├── sibelius.py │ ├── sibeliusG7.py │ ├── sketch.py │ ├── slack.py │ ├── spotify.py │ ├── sublime.py │ ├── terminal.py │ ├── things.py │ ├── trello.py │ ├── videoSpeedController.py │ ├── vim.py │ ├── vimeo.py │ ├── vscode.py │ ├── xcode.py │ ├── youtube.py │ └── zshell.py ├── cheatsheet.py ├── default_cheatsheet.pkl ├── icon.png ├── info.plist ├── shortcuts.py ├── version └── workflow │ ├── Notify.tgz │ ├── __init__.py │ ├── background.py │ ├── notify.py │ ├── update.py │ ├── util.py │ ├── version │ ├── web.py │ ├── workflow.py │ └── workflow3.py └── tests └── tests.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/RELEASE.md -------------------------------------------------------------------------------- /media/cheatsheet-customize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/media/cheatsheet-customize.png -------------------------------------------------------------------------------- /media/cheatsheet-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/media/cheatsheet-search.png -------------------------------------------------------------------------------- /media/cheatsheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/media/cheatsheet.png -------------------------------------------------------------------------------- /releases/Cheatsheet.alfredworkflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/releases/Cheatsheet.alfredworkflow -------------------------------------------------------------------------------- /src/apps/Finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/Finder.py -------------------------------------------------------------------------------- /src/apps/RES.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/RES.py -------------------------------------------------------------------------------- /src/apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/apps/airmail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/airmail.py -------------------------------------------------------------------------------- /src/apps/alfred.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/alfred.py -------------------------------------------------------------------------------- /src/apps/asana.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/asana.py -------------------------------------------------------------------------------- /src/apps/automute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/automute.py -------------------------------------------------------------------------------- /src/apps/chrome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/chrome.py -------------------------------------------------------------------------------- /src/apps/databricks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/databricks.py -------------------------------------------------------------------------------- /src/apps/defaultFolderX.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/defaultFolderX.py -------------------------------------------------------------------------------- /src/apps/evernote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/evernote.py -------------------------------------------------------------------------------- /src/apps/firefox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/firefox.py -------------------------------------------------------------------------------- /src/apps/forklift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/forklift.py -------------------------------------------------------------------------------- /src/apps/forklift3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/forklift3.py -------------------------------------------------------------------------------- /src/apps/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/github.py -------------------------------------------------------------------------------- /src/apps/gmail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/gmail.py -------------------------------------------------------------------------------- /src/apps/googleDocs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/googleDocs.py -------------------------------------------------------------------------------- /src/apps/googleSheets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/googleSheets.py -------------------------------------------------------------------------------- /src/apps/icons/Adobe Illustrator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/icons/Adobe Illustrator.png -------------------------------------------------------------------------------- /src/apps/icons/Adobe Photoshop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/icons/Adobe Photoshop.png -------------------------------------------------------------------------------- /src/apps/icons/Airmail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/icons/Airmail.png -------------------------------------------------------------------------------- /src/apps/icons/Alfred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/icons/Alfred.png -------------------------------------------------------------------------------- /src/apps/icons/Asana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/icons/Asana.png -------------------------------------------------------------------------------- /src/apps/icons/AutoMute Chrome extension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/icons/AutoMute Chrome extension.png -------------------------------------------------------------------------------- /src/apps/icons/Databricks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/icons/Databricks.png -------------------------------------------------------------------------------- /src/apps/icons/Default Folder X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/icons/Default Folder X.png -------------------------------------------------------------------------------- /src/apps/icons/Evernote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/icons/Evernote.png -------------------------------------------------------------------------------- /src/apps/icons/Finder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/icons/Finder.png -------------------------------------------------------------------------------- /src/apps/icons/Firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/icons/Firefox.png -------------------------------------------------------------------------------- /src/apps/icons/Forklift 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/icons/Forklift 3.png -------------------------------------------------------------------------------- /src/apps/icons/Gmail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/icons/Gmail.png -------------------------------------------------------------------------------- /src/apps/icons/Google Chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/icons/Google Chrome.png -------------------------------------------------------------------------------- /src/apps/icons/Google Docs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/icons/Google Docs.png -------------------------------------------------------------------------------- /src/apps/icons/Google Sheets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/icons/Google Sheets.png -------------------------------------------------------------------------------- /src/apps/icons/Intellij IDEA (default).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/icons/Intellij IDEA (default).png -------------------------------------------------------------------------------- /src/apps/icons/Jira.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/icons/Jira.png -------------------------------------------------------------------------------- /src/apps/icons/Mac OSX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/icons/Mac OSX.png -------------------------------------------------------------------------------- /src/apps/icons/Microsoft Excel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/icons/Microsoft Excel.png -------------------------------------------------------------------------------- /src/apps/icons/Microsoft Word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/icons/Microsoft Word.png -------------------------------------------------------------------------------- /src/apps/icons/Opera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/icons/Opera.png -------------------------------------------------------------------------------- /src/apps/icons/Outlook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/icons/Outlook.png -------------------------------------------------------------------------------- /src/apps/icons/Pixelmator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/icons/Pixelmator.png -------------------------------------------------------------------------------- /src/apps/icons/Reddit Enhancement Suite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/icons/Reddit Enhancement Suite.png -------------------------------------------------------------------------------- /src/apps/icons/Safari.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/icons/Safari.png -------------------------------------------------------------------------------- /src/apps/icons/Sibelius G7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/icons/Sibelius G7.png -------------------------------------------------------------------------------- /src/apps/icons/Sketch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/icons/Sketch.png -------------------------------------------------------------------------------- /src/apps/icons/Slack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/icons/Slack.png -------------------------------------------------------------------------------- /src/apps/icons/Spotify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/icons/Spotify.png -------------------------------------------------------------------------------- /src/apps/icons/Sublime Text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/icons/Sublime Text.png -------------------------------------------------------------------------------- /src/apps/icons/Terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/icons/Terminal.png -------------------------------------------------------------------------------- /src/apps/icons/Things.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/icons/Things.png -------------------------------------------------------------------------------- /src/apps/icons/Video Speed Controller chrome extension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/icons/Video Speed Controller chrome extension.png -------------------------------------------------------------------------------- /src/apps/icons/Vimeo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/icons/Vimeo.png -------------------------------------------------------------------------------- /src/apps/icons/Vintage Sublime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/icons/Vintage Sublime.png -------------------------------------------------------------------------------- /src/apps/icons/Visual Studio Code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/icons/Visual Studio Code.png -------------------------------------------------------------------------------- /src/apps/icons/XCode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/icons/XCode.png -------------------------------------------------------------------------------- /src/apps/icons/github.com.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/icons/github.com.png -------------------------------------------------------------------------------- /src/apps/icons/iTerm2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/icons/iTerm2.png -------------------------------------------------------------------------------- /src/apps/icons/trello.com.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/icons/trello.com.png -------------------------------------------------------------------------------- /src/apps/icons/vim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/icons/vim.png -------------------------------------------------------------------------------- /src/apps/icons/youtube.com.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/icons/youtube.com.png -------------------------------------------------------------------------------- /src/apps/icons/zshell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/icons/zshell.png -------------------------------------------------------------------------------- /src/apps/illustrator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/illustrator.py -------------------------------------------------------------------------------- /src/apps/intellij.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/intellij.py -------------------------------------------------------------------------------- /src/apps/iterm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/iterm.py -------------------------------------------------------------------------------- /src/apps/jira.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/jira.py -------------------------------------------------------------------------------- /src/apps/macosx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/macosx.py -------------------------------------------------------------------------------- /src/apps/microsoftExcel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/microsoftExcel.py -------------------------------------------------------------------------------- /src/apps/microsoftWord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/microsoftWord.py -------------------------------------------------------------------------------- /src/apps/opera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/opera.py -------------------------------------------------------------------------------- /src/apps/outlook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/outlook.py -------------------------------------------------------------------------------- /src/apps/photoshop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/photoshop.py -------------------------------------------------------------------------------- /src/apps/pixelmator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/pixelmator.py -------------------------------------------------------------------------------- /src/apps/safari.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/safari.py -------------------------------------------------------------------------------- /src/apps/sibelius.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/sibelius.py -------------------------------------------------------------------------------- /src/apps/sibeliusG7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/sibeliusG7.py -------------------------------------------------------------------------------- /src/apps/sketch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/sketch.py -------------------------------------------------------------------------------- /src/apps/slack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/slack.py -------------------------------------------------------------------------------- /src/apps/spotify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/spotify.py -------------------------------------------------------------------------------- /src/apps/sublime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/sublime.py -------------------------------------------------------------------------------- /src/apps/terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/terminal.py -------------------------------------------------------------------------------- /src/apps/things.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/things.py -------------------------------------------------------------------------------- /src/apps/trello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/trello.py -------------------------------------------------------------------------------- /src/apps/videoSpeedController.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/videoSpeedController.py -------------------------------------------------------------------------------- /src/apps/vim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/vim.py -------------------------------------------------------------------------------- /src/apps/vimeo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/vimeo.py -------------------------------------------------------------------------------- /src/apps/vscode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/vscode.py -------------------------------------------------------------------------------- /src/apps/xcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/xcode.py -------------------------------------------------------------------------------- /src/apps/youtube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/youtube.py -------------------------------------------------------------------------------- /src/apps/zshell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/apps/zshell.py -------------------------------------------------------------------------------- /src/cheatsheet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/cheatsheet.py -------------------------------------------------------------------------------- /src/default_cheatsheet.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/default_cheatsheet.pkl -------------------------------------------------------------------------------- /src/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/icon.png -------------------------------------------------------------------------------- /src/info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/info.plist -------------------------------------------------------------------------------- /src/shortcuts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/shortcuts.py -------------------------------------------------------------------------------- /src/version: -------------------------------------------------------------------------------- 1 | 1.12 2 | -------------------------------------------------------------------------------- /src/workflow/Notify.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/workflow/Notify.tgz -------------------------------------------------------------------------------- /src/workflow/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/workflow/__init__.py -------------------------------------------------------------------------------- /src/workflow/background.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/workflow/background.py -------------------------------------------------------------------------------- /src/workflow/notify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/workflow/notify.py -------------------------------------------------------------------------------- /src/workflow/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/workflow/update.py -------------------------------------------------------------------------------- /src/workflow/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/workflow/util.py -------------------------------------------------------------------------------- /src/workflow/version: -------------------------------------------------------------------------------- 1 | 1.40.0 -------------------------------------------------------------------------------- /src/workflow/web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/workflow/web.py -------------------------------------------------------------------------------- /src/workflow/workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/workflow/workflow.py -------------------------------------------------------------------------------- /src/workflow/workflow3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/src/workflow/workflow3.py -------------------------------------------------------------------------------- /tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mutdmour/alfred-workflow-cheatsheet/HEAD/tests/tests.py --------------------------------------------------------------------------------