Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mutdmour/alfred-workflow-cheatsheet
Cheatsheet to get shortcuts for apps
https://github.com/mutdmour/alfred-workflow-cheatsheet
Last synced: 8 days ago
JSON representation
Cheatsheet to get shortcuts for apps
- Host: GitHub
- URL: https://github.com/mutdmour/alfred-workflow-cheatsheet
- Owner: mutdmour
- Created: 2017-09-30T11:07:00.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-10-07T09:58:44.000Z (about 2 years ago)
- Last Synced: 2024-10-20T23:43:09.554Z (15 days ago)
- Language: Python
- Homepage:
- Size: 285 MB
- Stars: 100
- Watchers: 7
- Forks: 21
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-jordan - Cheatsheet
- awesome-starred-test - mutdmour/alfred-workflow-cheatsheet - Cheatsheet to get shortcuts for apps (Python)
- alfred-workflows - Cheatsheet - Gets keyboard shortcuts for applications, websites, and tools... (Utility)
README
Cheatsheet
----------Alfred workflow that gets shortcuts for applications, websites, tools and others
If you have any questions or issues, checkout the discussion at [the alfred forum here](https://www.alfredforum.com/topic/10830-cheatsheet-shortcuts-for-your-tools/).
Or create an issue if you cannot find an answer.![Screenshot](media/cheatsheet.png)
![Screenshot](media/cheatsheet-search.png)
Supported
---------
- Adobe Illustrator
- Adobe Photoshop
- Airmail
- Alfred
- Asana
- AutoMute Chrome extension
- Databricks
- Default Folder X
- Evernote
- Finder
- Firefox
- Forklift 3
- Github.com
- Google Chrome
- Google Docs
- Google Sheets
- inbox.google.com
- IntelliJ Idea (default Mac OS X)
- iTerm2
- Jira
- Mac OSX
- Microsoft Excel
- Microsoft Word
- Outlook
- Pixelmator
- Reddit Enhancement Suite
- Safari
- Sibelius G7
- Sketch
- Slack
- Spotify
- Sublime Text
- Terminal
- Trello.com
- Things
- Video Speed Controller chrome extension
- Vim
- Vimeo
- Vintage Sublime
- Visual Studio Code
- XCode
- Youtube.comRequest apps to add
----------------
If you would like to request an app to add, please comment on this issue [#29](https://github.com/mutdmour/alfred-workflow-cheatsheet/issues/29)To download
-----------
Download [workflow file](https://github.com/mutdmour/alfred-workflow-cheatsheet/raw/master/releases/Cheatsheet.alfredworkflow)To add more apps
----------------
- add it yourself to [custom.json] in your data directory.
```json
{
"custom_app_example": {
"action": "shortcut"
}
}
```
- to overwrite any default, ^⏎ on any shortcut in the app.
- to share with everyone, create a PR with the app shortcuts you want to add [/src/shortcuts.py]. Please also include the app icon (`src/apps/icons/%APP NAME%.png`).
- create an issue requesting the tool you want us to addTo show or hide apps in search results
----------------
Open `settings.json` in your data directory.To show only some specific apps in the search results list them in `show_only_apps` parameter:
```json
{
"__workflow_last_version": "1.3.0",
"show_only_apps": [
"Alfred",
"Mac OSX",
"Terminal"
]
}
```
All other apps would be hidden then.To hide some apps in the search results list them in `hide_apps` parameter:
```json
{
"__workflow_last_version": "1.3.0",
"hide_apps": [
"Microsoft Word",
"Video Speed Controller chrome extension"
]
}
```To find your settings.json or custom.json file
----------------Open cheatsheet in Alfred and look for `customize your cheatsheet`.
Open that and that should open the folder with your `settings.json` and `custom.json` file.![Screenshot](media/cheatsheet-customize.png)