Compare commits

...

2 commits

Author SHA1 Message Date
3576a08217 adjusted touchpad sensitivity 2023-12-17 15:43:04 -08:00
b4e7116937 added laptop specific configuration 2023-12-17 15:37:09 -08:00
2 changed files with 14 additions and 4 deletions

View file

@ -55,7 +55,13 @@ in
"eww open full_screen_bar"
];
input = {
input = if (hostname == "NicksNixLaptop") then
{
kb_layout = "us";
sensitivity = 0.3;
accel_profile = "linear";
touchpad.disable_while_typing = true;
} else {
kb_layout = "us";
sensitivity = -0.85;
accel_profile = "adaptive";

View file

@ -13,11 +13,15 @@ let
env = WLR_NO_HARDWARE_CURSORS,1
env = SIGNAL_USE_WAYLAND,1
''
else if (hostname == "NicksNixLaptop") then ''
else if (hostname == "NicksNixLaptop") then ''
monitor=eDP-1, 1920x1080@60, 0x0, 1
'' else ''
env = XDG_SESSION_TYPE,wayland
env = SIGNAL_USE_WAYLAND,1
env = WLR_NO_HARDWARE_CURSORS,1
'' else ''
'';
'';
in monitor_config