Skip to content

Commit

Permalink
Add a keyboard shortcut for select_9_up
Browse files Browse the repository at this point in the history
  • Loading branch information
emorydunn committed Sep 27, 2022
1 parent 733513c commit d8a5e8e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ A collection of AppleScripts for use with Capture One.
| select_previous_variants | 12+ | |
| move_to_archive | 20+ | |
| camera_settings_check | 20+ | |
| select_9_up | 20+ | |
| select_9_up | 20+ | <kbd>⌃9</kbd> |
| count_favorites | 20+ | |

## Installation
Expand All @@ -26,7 +26,7 @@ Run `install.command`, which will copy the scripts to `~/Library/Scripts/Capture

Some notes:

- The script defaults to adding shortcuts for Capture One 20
- The script defaults to adding shortcuts for Capture One 22
- Restart Capture One after installation
- macOS might not show the shortcuts in System Preferences
- Background scripts are _not_ installed by default, please copy the ones you want to use manually
Expand Down
5 changes: 3 additions & 2 deletions install.command
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

SCRIPT_DIR=`dirname "${0}"`
INSTALL_DIR="${HOME}/Library/Scripts/Capture One Scripts"
CAPTUREONE="com.captureone.captureone13"
CAPTUREONE="com.captureone.captureone15"

ADD_SHORTCUT="defaults write ${CAPTUREONE} NSUserKeyEquivalents -dict-add"

Expand All @@ -20,6 +20,7 @@ ${ADD_SHORTCUT} "Scriptsmake_new_dir" "^n"

${ADD_SHORTCUT} "Scriptsselect_previous_capture" "^↑"
${ADD_SHORTCUT} "Scriptsselect_next_capture" "^↓"
${ADD_SHORTCUT} "Scriptsselect_9_up" "^9"

${ADD_SHORTCUT} "Scriptsadd_capture_to_favs" "^f"
echo "Done"
echo "Done"

0 comments on commit d8a5e8e

Please sign in to comment.