Use start/select instead of A/B for controller inputs.

When using a keyboard A and B are Control and Alt.

This interviews with window managers or desktops that use control and
alt for navigation shortcuts (for example alt-tab will pause/unpause
music when m291 is in focus).

After this change, the short cuts are moved to start/select, which
correspond to shift/home. These are less likely to interfere with
shortcuts.
This commit is contained in:
~d6 2024-09-07 19:33:47 -04:00
parent fe5a9321d0
commit 469f0348eb
1 changed files with 2 additions and 2 deletions

View File

@ -143,8 +143,8 @@
( down ) DUP #20 NEQ ?{ #01 <move> }
( left ) DUP #40 NEQ ?{ <escape> }
( right ) DUP #80 NEQ ?{ .selection LDZ <pick> }
( A ) DUP #01 NEQ ?{ .selection LDZ <pick> }
( B ) DUP #02 NEQ ?{ <send-pause> }
( select [shift] ) DUP #04 NEQ ?{ <send-pause> }
( start [home] ) DUP #08 NEQ ?{ .selection LDZ <pick> }
POP BRK
(