Middle-Community icon indicating copy to clipboard operation
Middle-Community copied to clipboard

Fn key on external keyboard does not trigger middle click

Open hsheresd opened this issue 1 year ago • 1 comments

Fn on macbook pro keyboard does work. The external keyboard is an Logitech K380

hsheresd avatar Sep 19 '22 17:09 hsheresd

Thanks for reporting. Unfortunately, there's nothing that can be done about it from the perspective of Middle.

As a workaround, you can change the modifiers to something different via command line, if desired:

defaults write com.knollsoft.Middle modifierMiddle -int <modifiers>

where modifiers is any integer combination of

cmd: 1048576 option: 524288 control: 262144 shift: 131072

For example, to get cmd+option, you'd have 1048576 | 524288 = 1572864 (0x180000)

so, defaults write com.knollsoft.Middle modifierMiddle -int 1572864

Restart the app after executing that command.

rxhanson avatar Sep 19 '22 18:09 rxhanson