答案1
感谢@harrymc 暗示 AutoHotkey。
我使用以下 AutoHotkey 脚本将键盘上的AltGr+映射到管道符号。´|
#NoTrayIcon
IconVisible := 0
; Map AltGr+´ to send a pipe character "|".
; ^! means Ctrl+Alt and
; VKDD is the AHK virtual key code for my ´-key.
^!VKDD::Send |
; Toggeling the AHK tray icon
; ^!+ means Ctrl+Alt+Shift and VKDD again is the ´-key
^!+VKDD::
if (IconVisible == 1) {
Menu, Tray, NoIcon
IconVisible = 0
} else {
Menu, Tray, Icon
IconVisible = 1
}
我通过运行一些虚拟 AHK 脚本、双击托盘图标,然后打开查看->键历史记录,找到了 AHK 虚拟键代码。