Merge pull request #6345 from puffnfresh/feature/mtrack-options
Add more options to multitouch (mtrack) module
This commit is contained in:
commit
1c58c3a772
@ -2,9 +2,15 @@
|
|||||||
|
|
||||||
with lib;
|
with lib;
|
||||||
|
|
||||||
let cfg = config.services.xserver.multitouch; in
|
let cfg = config.services.xserver.multitouch;
|
||||||
|
disabledTapConfig = ''
|
||||||
{
|
Option "MaxTapTime" "0"
|
||||||
|
Option "MaxTapMove" "0"
|
||||||
|
Option "TapButton1" "0"
|
||||||
|
Option "TapButton2" "0"
|
||||||
|
Option "TapButton3" "0"
|
||||||
|
'';
|
||||||
|
in {
|
||||||
|
|
||||||
options = {
|
options = {
|
||||||
|
|
||||||
@ -30,6 +36,33 @@ let cfg = config.services.xserver.multitouch; in
|
|||||||
description = "Whether to ignore touches detected as being the palm (i.e when typing)";
|
description = "Whether to ignore touches detected as being the palm (i.e when typing)";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
tapButtons = mkOption {
|
||||||
|
type = types.bool;
|
||||||
|
default = true;
|
||||||
|
example = false;
|
||||||
|
description = "Whether to enable tap buttons.";
|
||||||
|
};
|
||||||
|
|
||||||
|
buttonsMap = mkOption {
|
||||||
|
type = types.listOf types.int;
|
||||||
|
default = [3 2 0];
|
||||||
|
example = [1 3 2];
|
||||||
|
description = "Remap touchpad buttons.";
|
||||||
|
apply = map toString;
|
||||||
|
};
|
||||||
|
|
||||||
|
additionalOptions = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
default = "";
|
||||||
|
example = ''
|
||||||
|
Option "ScaleDistance" "50"
|
||||||
|
Option "RotateDistance" "60"
|
||||||
|
'';
|
||||||
|
description = ''
|
||||||
|
Additional options for mtrack touchpad driver.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
@ -46,12 +79,17 @@ let cfg = config.services.xserver.multitouch; in
|
|||||||
Identifier "Touchpads"
|
Identifier "Touchpads"
|
||||||
Driver "mtrack"
|
Driver "mtrack"
|
||||||
Option "IgnorePalm" "${if cfg.ignorePalm then "true" else "false"}"
|
Option "IgnorePalm" "${if cfg.ignorePalm then "true" else "false"}"
|
||||||
|
Option "ClickFinger1" "${builtins.elemAt cfg.buttonsMap 0}"
|
||||||
|
Option "ClickFinger2" "${builtins.elemAt cfg.buttonsMap 1}"
|
||||||
|
Option "ClickFinger3" "${builtins.elemAt cfg.buttonsMap 2}"
|
||||||
|
${optionalString (!cfg.tapButtons) disabledTapConfig}
|
||||||
${optionalString cfg.invertScroll ''
|
${optionalString cfg.invertScroll ''
|
||||||
Option "ScrollUpButton" "5"
|
Option "ScrollUpButton" "5"
|
||||||
Option "ScrollDownButton" "4"
|
Option "ScrollDownButton" "4"
|
||||||
Option "ScrollLeftButton" "7"
|
Option "ScrollLeftButton" "7"
|
||||||
Option "ScrollRightButton" "6"
|
Option "ScrollRightButton" "6"
|
||||||
''}
|
''}
|
||||||
|
${cfg.additionalOptions}
|
||||||
EndSection
|
EndSection
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user