@@ -32,6 +32,12 @@ undo = ["Ctrl+Z"]
3232# Redo last undone annotation
3333redo = [" Ctrl+Shift+Z" , " Ctrl+Y" ]
3434
35+ # Optional undo/redo batch actions
36+ undo_all = []
37+ redo_all = []
38+ undo_all_delayed = []
39+ redo_all_delayed = []
40+
3541# Duplicate currently selected annotations
3642duplicate_selection = [" Ctrl+D" ]
3743
@@ -111,6 +117,22 @@ return_to_transparent = ["Ctrl+Shift+T"]
111117# Cycle overlay focus across monitors (layer-shell + xdg fullscreen fallback)
112118focus_prev_output = [" Ctrl+Alt+Shift+ArrowLeft" ]
113119focus_next_output = [" Ctrl+Alt+Shift+ArrowRight" ]
120+ # Board slots and board management
121+ board_1 = [" Ctrl+Shift+1" ]
122+ board_2 = [" Ctrl+Shift+2" ]
123+ board_3 = [" Ctrl+Shift+3" ]
124+ board_4 = [" Ctrl+Shift+4" ]
125+ board_5 = [" Ctrl+Shift+5" ]
126+ board_6 = [" Ctrl+Shift+6" ]
127+ board_7 = [" Ctrl+Shift+7" ]
128+ board_8 = [" Ctrl+Shift+8" ]
129+ board_9 = [" Ctrl+Shift+9" ]
130+ board_prev = [" Ctrl+Shift+ArrowLeft" ]
131+ board_next = [" Ctrl+Shift+ArrowRight" ]
132+ board_new = [" Ctrl+Shift+N" ]
133+ board_duplicate = [" Ctrl+Shift+D" ]
134+ board_delete = [" Ctrl+Shift+Delete" ]
135+ board_picker = [" Ctrl+Shift+B" ]
114136
115137# Page navigation
116138# Ubuntu/GNOME defaults avoid Ctrl+Alt workspace shortcuts (Ctrl+ArrowLeft/Right, Ctrl+PageUp/PageDown).
@@ -123,6 +145,9 @@ page_delete = ["Ctrl+Alt+Delete"]
123145# Toggle help overlay
124146toggle_help = [" F10" , " F1" ]
125147
148+ # Toggle quick reference overlay
149+ toggle_quick_help = [" Shift+F1" ]
150+
126151# Toggle status bar
127152toggle_status_bar = [" F12" , " F4" ]
128153
@@ -165,6 +190,9 @@ open_context_menu = ["Shift+F10", "Menu"]
165190# Launch the desktop configurator (requires wayscriber-configurator)
166191open_configurator = [" F11" ]
167192
193+ # Toggle command palette
194+ toggle_command_palette = [" Ctrl+K" ]
195+
168196# Color selection shortcuts
169197set_color_red = [" R" ]
170198set_color_green = [" G" ]
@@ -259,8 +287,8 @@ show_status_board_badge = true
259287# Show page counter in the status bar
260288show_status_page_badge = true
261289
262- # Show the board/page badge even when the status bar is visible
263- show_page_badge_with_status_bar = false
290+ # Show the floating board/page badge even when the status bar is visible
291+ show_floating_badge_always = false
264292
265293# Show a "FROZEN" badge when frozen mode is active
266294show_frozen_badge = false
0 commit comments