diff options
| author | Fuwn <[email protected]> | 2024-08-23 02:59:37 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-08-23 02:59:37 -0700 |
| commit | fec2c162bea33b1cba5771d98cdbc86ab2b4501a (patch) | |
| tree | 225a72c80c4f7d68b93076db198b6fe5ffecf3c7 /home | |
| parent | h (diff) | |
| download | home-manager-config-fec2c162bea33b1cba5771d98cdbc86ab2b4501a.tar.xz home-manager-config-fec2c162bea33b1cba5771d98cdbc86ab2b4501a.zip | |
remove hycov
Diffstat (limited to 'home')
3 files changed, 16 insertions, 19 deletions
diff --git a/home/fuwn/meta/desktop/wayland/hyprland/default.nix b/home/fuwn/meta/desktop/wayland/hyprland/default.nix index b486e7e..4fa3b44 100644 --- a/home/fuwn/meta/desktop/wayland/hyprland/default.nix +++ b/home/fuwn/meta/desktop/wayland/hyprland/default.nix @@ -21,7 +21,7 @@ }; plugins = [ - inputs.hycov.packages.${pkgs.system}.hycov + # inputs.hycov.packages.${pkgs.system}.hycov # inputs.Hyprspace.packages.${pkgs.system}.Hyprspace # inputs.hyprland-plugins.packages.${pkgs.stdenv.hostPlatform.system}.hyprtrails ]; diff --git a/home/fuwn/meta/desktop/wayland/hyprland/hyprland/binds.nix b/home/fuwn/meta/desktop/wayland/hyprland/hyprland/binds.nix index 6d63d88..4059ba5 100644 --- a/home/fuwn/meta/desktop/wayland/hyprland/hyprland/binds.nix +++ b/home/fuwn/meta/desktop/wayland/hyprland/hyprland/binds.nix @@ -47,7 +47,7 @@ _: { # "$mod, j, layoutmsg, cyclenext" # "$mod, j, layoutmsg, cycleprev" - "$mod, tab, hycov:toggleoverview" + # "$mod, tab, hycov:toggleoverview" # "$mod SHIFT, tab, overview:toggle" # Emoji picker diff --git a/home/fuwn/meta/desktop/wayland/hyprland/hyprland/default.nix b/home/fuwn/meta/desktop/wayland/hyprland/hyprland/default.nix index e2538fd..34be3a5 100644 --- a/home/fuwn/meta/desktop/wayland/hyprland/hyprland/default.nix +++ b/home/fuwn/meta/desktop/wayland/hyprland/hyprland/default.nix @@ -12,22 +12,6 @@ _: { ]; xdg.configFile = ( - let - scripts = [ - "common.sh" - "fake_fullscreen_status" - "hycov_easymotion" - "initialise_gtk" - "initialise_waybar" - "initialise_xdg_portal" - "move_focus_to_monitor" - "move_window_to_monitor" - "move_window_to_workspace" - "switch_workspace" - "toggle_gaps" - "toggle_layout" - ]; - in ( builtins.listToAttrs (map (script: { @@ -37,7 +21,20 @@ _: { source = ./scripts/${script}; }; }) - scripts) + [ + "common.sh" + "fake_fullscreen_status" + # "hycov_easymotion" + "initialise_gtk" + "initialise_waybar" + "initialise_xdg_portal" + "move_focus_to_monitor" + "move_window_to_monitor" + "move_window_to_workspace" + "switch_workspace" + "toggle_gaps" + "toggle_layout" + ]) ) ); } |