alfred-extend-hotkey-triggers
alfred-extend-hotkey-triggers copied to clipboard
Use Shift + Space and fn + somekey as your Alfred hotkey triggers.
Alfred Extend Hotkey Triggers
Use Shift + Space and fn + somekey as your hotkey triggers.
Please give me a star if it's helpful to you. ;)
Usage
- Create a blank workflow by clicking the
+
in the bottom of Workflows. - Open the workflow in Finder by right click the blank workflow.
- Download info.plist (press Alt +
left click
to the link) and drag it to the folder to replace the defaultinfo.plist
. - Wait for seconds and see the changes in the blank workflow.
- Press Shift + Space and fn + R to test.
https://user-images.githubusercontent.com/14329786/152137289-1408e50e-5184-4d0a-a4be-ad152f2c9774.mp4
Shift Space
-
Open the
info.plist
of your workflow.If your editor supports
.plist
, like Xcode:or in plain text editor, like Emacs:
If you want to use text editor, find something like the code below:
NOTICE: There might be multiple shortcuts in one workflow.
This tool might be helpful: Diff Checker
<key>hotkey</key>
<integer>49</integer>
<key>hotmod</key>
<integer>131720</integer>
- Change/Add the
hotkey
value to49
. - Change/Add the
hotmod
value to131720
. - Remember to save the changes in your editor.
fn + somekey
Works with macOS 12+
The code below represents fn + R.
<key>hotkey</key>
<integer>15</integer>
<key>hotmod</key>
<integer>8388608</integer>
Still wants more?
hotkeys:
hotmods
Note: Some hotmods are duplicated, I haven't used them all so I didn't test. Pull request is welcome.
Hotmod Integers | Hotkey Modefiers |
---|---|
131072 | Shift |
131720 | Shift |
262144 | Control |
262401 | Control |
393216 | Shift + Control |
524288 | Option |
655360 | Shift + Option |
786432 | Control + Option |
917504 | Shift + Control + Option |
1048576 | Command |
1179648 | Shift + Command |
1310720 | Control + Command |
1310985 | Control + Command |
1441792 | Shift + Control + Command |
1572864 | Option + Command |
1703936 | Shift + Option + Command |
1835008 | Control + Option + Command |
1966080 | Shift + Control + Option + Command |
8388608 | Fn |
hotmod:
Credits
LICENSE
AGPL-3.0