dual-function-keys: Drop all binds except caps lock as ctrl/esc

This should help avoid surprises when using other computers and simplify
things a bit. Note that super for the application launcher was cool but
now I prioritize launching applications from ironbar instead.
This commit is contained in:
Donovan Glover 2024-07-15 20:29:58 -04:00
parent a2f21d1eca
commit 120047d37d
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -13,7 +13,7 @@ let
in
{
options.modules.hardware = {
keyboardBinds = mkEnableOption "start button for rofi, caps lock as escape, etc.";
keyboardBinds = mkEnableOption "caps lock as ctrl when held and esc when tapped";
mouseSettings = mkEnableOption "piper for gaming mice";
bluetooth = mkEnableOption "bluetooth support";
lidIgnore = mkEnableOption "ignoring the laptop lid on close";
@ -67,26 +67,6 @@ in
TAP = "KEY_ESC";
HOLD = "KEY_LEFTCTRL";
}
{
KEY = "KEY_SYSRQ";
TAP = "KEY_SYSRQ";
HOLD = "KEY_RIGHTMETA";
}
{
KEY = "KEY_LEFTMETA";
TAP = "KEY_FAVORITES";
HOLD = "KEY_LEFTMETA";
}
{
KEY = "KEY_RIGHTSHIFT";
TAP = "KEY_MESSENGER";
HOLD = "KEY_RIGHTSHIFT";
}
{
KEY = "KEY_RIGHTALT";
TAP = "KEY_GRAVE";
HOLD = "KEY_RIGHTALT";
}
];
};
};