AW: Übersicht mechanische Tastaturen
Mit AutoHotkey geht's das auch.
AutoHotkey Download
Bei mir läuft immer folgendes Script ab Systemstart im Hintergrund:
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
#SingleInstance force
SetBatchLines -1
SetCapsLockState, off
SetNumLockState, on
SetScrollLockState, off
Capslock::Ctrl
LWin::return
^PgUp::Send {Volume_Up 2}
^PgDn::Send {Volume_Down 2}
Es bewirkt: SetCapsLockState, off = CapsLock/Feststelltaste Aus, SetNumLockState, on = NumLock An, SetScrollLockState, off = ScrollLock/Rollen Aus, Capslock::Ctrl = Macht aus der CapsLock Taste eine weitere Ctrl/STRG Taste, LWin::return = Deaktiviert die linke Windows Taste,
^PgUp::Send {Volume_Up 2} = Ctrl/STRG + PageUp/Bild ↑ = Lauter, ^PgDn::Send {Volume_Down 2} = Ctrl/STRG + PageDown/Bild ↓ = Leiser.