Skip to content

Buttons Shortcuts

José Luis Cruz edited this page Mar 16, 2018 · 1 revision

These two examples are already selectable in the config.ini file, 2) multiple menus being the default setup.

1.1 Example with a Single Menu

start_menu = [menu_simple]

[menu_simple]

# upper buttons
b0 = key Tab           # hide interface
b1 = key r             # rect select (gimp) & pick layer (krita)
b2 = key ctrl+x        # cut
b3 = key ctrl+c        # copy
b4 = key ctrl+v        # paste

# scrollbar
su = click 4           # mouse wheel up
sd = click 5           # mouse wheel down

# lower buttons
b5 = key ctrl+z        # undo
b6 = key ctrl+y        # redo (gimp)
b7 = key ctrl+shift+z  # redo (krita)
b8 = key 4             # turn left (krita)
b9 = key 6             # turn right (krita)

1.2 Example with Multiple Menus

start_menu = [menu_main]

[menu_main]
title = % Main Menu %
b0 = [menu_krita]
b1 = [menu_gimp]
b2 = key ctrl+s        # save
b3 = key ctrl+o        # open
b4 = key ctrl+w        # close
#
su = click 4           # mouse wheel up
sd = click 5           # mouse wheel down
#
b5 = ctrl+x            # cut
b6 = ctrl+c            # copy
b7 = ctrl+v            # paste
b8 = key Return
b9 = key Escape

[menu_krita]
title = % Krita %
b0 = key Tab           # hide interface
b1 = key b             # draw tool
b2 = key r             # pick layer
b3 = key w             # wrap mode
b4 = key e             # erase mode
#
su = key ctrl+minus    # zoom out
sd = key ctrl+plus     # zoom in
#
b5 = key ctrl+z        # redo
b6 = key ctrl+shift+z  # undo
b7 = key 4             # turn left
b8 = key 6             # turn right
b9 = [menu_main]


[menu_gimp]
title = % Gimp %
b0 = key Tab           # hide interface
b1 = key p             # paintbrush
b2 = key r             # rect select
b3 = key c             # clone
b4 = key shift+e       # eraser
#
su = key minus         # zoom out
sd = key plus          # zoom in
#
b5 = key ctrl+z        # undo
b6 = key ctrl+y        # redo
b7 = key x             # swap colors
b8 = key shift+r       # rotate
b9 = [menu_main]
Clone this wiki locally