feat(hypr): setup hyprgrass again
All checks were successful
Discord / discord commits (push) Has been skipped

This commit is contained in:
matt1432 2024-06-16 14:33:58 -04:00
parent 638957dbb5
commit b37246474c
6 changed files with 48 additions and 7 deletions

Binary file not shown.

BIN
flake.nix

Binary file not shown.

View file

@ -143,6 +143,11 @@ let
repo = "Hyprspace"; repo = "Hyprspace";
}; };
hyprgrass = mkHyprDep {
owner = "horriblename";
repo = "hyprgrass";
};
grim-hyprland = mkDep { grim-hyprland = mkDep {
owner = "eriedaberrie"; owner = "eriedaberrie";
repo = "grim-hyprland"; repo = "grim-hyprland";

View file

@ -65,6 +65,7 @@ in {
# HOME-MANAGER CONFIG # HOME-MANAGER CONFIG
home-manager.users.${mainUser} = { home-manager.users.${mainUser} = {
imports = [ imports = [
./hyprgrass.nix
./hyprexpo.nix ./hyprexpo.nix
# ./Hyprspace.nix # ./Hyprspace.nix
./inputs.nix ./inputs.nix

View file

@ -0,0 +1,42 @@
{
osConfig,
hyprgrass,
lib,
pkgs,
...
}: let
inherit (lib) optionalAttrs;
isTouchscreen = osConfig.hardware.sensor.iio.enable;
in
optionalAttrs isTouchscreen {
wayland.windowManager.hyprland = {
plugins = [hyprgrass.packages.${pkgs.system}.default];
settings = {
plugin = {
touch_gestures = {
# The default sensitivity is probably too low on tablet screens,
# I recommend turning it up to 4.0
sensitivity = 4.0;
# must be >= 3
workspace_swipe_fingers = 3;
experimental = {
# send proper cancel events to windows instead of hacky touch_up events,
# NOT recommended as it crashed a few times, once it's stabilized I'll make it the default
send_cancel = 0;
};
};
};
gestures = {
workspace_swipe = true;
workspace_swipe_fingers = 3;
workspace_swipe_touch = false;
workspace_swipe_cancel_ratio = 0.15;
};
};
};
}

View file

@ -44,13 +44,6 @@ in {
}; };
}; };
gestures = {
workspace_swipe = true;
workspace_swipe_fingers = 3;
workspace_swipe_touch = true;
workspace_swipe_cancel_ratio = 0.15;
};
bind = [ bind = [
",XF86AudioPlay, exec, playerctl play-pause" ",XF86AudioPlay, exec, playerctl play-pause"
",XF86AudioStop, exec, playerctl stop" ",XF86AudioStop, exec, playerctl stop"