Skip to content

Commit d8a5e8e

Browse files
committed
Add a keyboard shortcut for select_9_up
1 parent 733513c commit d8a5e8e

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ A collection of AppleScripts for use with Capture One.
1717
| select_previous_variants | 12+ | |
1818
| move_to_archive | 20+ | |
1919
| camera_settings_check | 20+ | |
20-
| select_9_up | 20+ | |
20+
| select_9_up | 20+ | <kbd>⌃9</kbd> |
2121
| count_favorites | 20+ | |
2222

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

2727
Some notes:
2828

29-
- The script defaults to adding shortcuts for Capture One 20
29+
- The script defaults to adding shortcuts for Capture One 22
3030
- Restart Capture One after installation
3131
- macOS might not show the shortcuts in System Preferences
3232
- Background scripts are _not_ installed by default, please copy the ones you want to use manually

install.command

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
SCRIPT_DIR=`dirname "${0}"`
44
INSTALL_DIR="${HOME}/Library/Scripts/Capture One Scripts"
5-
CAPTUREONE="com.captureone.captureone13"
5+
CAPTUREONE="com.captureone.captureone15"
66

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

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

2121
${ADD_SHORTCUT} "Scriptsselect_previous_capture" "^↑"
2222
${ADD_SHORTCUT} "Scriptsselect_next_capture" "^↓"
23+
${ADD_SHORTCUT} "Scriptsselect_9_up" "^9"
2324

2425
${ADD_SHORTCUT} "Scriptsadd_capture_to_favs" "^f"
25-
echo "Done"
26+
echo "Done"

0 commit comments

Comments
 (0)