Use lock status as virtual key #200
developer91234
started this conversation in
Ideas
Replies: 1 comment 2 replies
-
I'm almost certain this is a firmware level feature and it's state is not exposed. The default state of the lock/mode can even be be set in BIOS am I right? You could still do this though, just use some other key for it. For instance, toggle the mode by holding Esc for half a second, triggering a virtual modifier: FnKey = F1 F2 F3 F4 F5 F6 F7 F8 F9 F10 F11 F12
FnLock = Virtual1
[modifier = "FnLock"]
F1 >> # F1 alt function here
# ...
F12 >> # F12 alt function here
[default]
Escape{500ms} >> FnLock ^ FnLock
FnKey >> FnKey What I'm doing myself though and suggest to consider. Map the function keys to their alternatives for all apps that either do not make use of function keys or in which you just never need/use them. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I found that Fn+Esc, the Fnlock feature on lenovo thinkpads, can't be remapped because it doesn't send any key events besides the Fn key itself. However I'm wondering if there's still some way for keymapper to to detect if the Fnlock is on or off. The same goes for other possible locks, though most of those can be remapped.
The use case for this would be, for example, to make the number keys act like function keys when the Fnlock is off.
Beta Was this translation helpful? Give feedback.
All reactions