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 | |
| parent | h (diff) | |
| download | home-manager-config-fec2c162bea33b1cba5771d98cdbc86ab2b4501a.tar.xz home-manager-config-fec2c162bea33b1cba5771d98cdbc86ab2b4501a.zip | |
remove hycov
| -rw-r--r-- | flake.lock | 31 | ||||
| -rw-r--r-- | flake.nix | 8 | ||||
| -rw-r--r-- | home/fuwn/meta/desktop/wayland/hyprland/default.nix | 2 | ||||
| -rw-r--r-- | home/fuwn/meta/desktop/wayland/hyprland/hyprland/binds.nix | 2 | ||||
| -rw-r--r-- | home/fuwn/meta/desktop/wayland/hyprland/hyprland/default.nix | 31 |
5 files changed, 20 insertions, 54 deletions
@@ -239,36 +239,6 @@ "type": "github" } }, - "hycov": { - "inputs": { - "hyprland": [ - "hyprland" - ], - "nixpkgs": [ - "hycov", - "hyprland", - "nixpkgs" - ], - "systems": [ - "hycov", - "hyprland", - "systems" - ] - }, - "locked": { - "lastModified": 1719328349, - "narHash": "sha256-upIUl8IE5ow+CJKa2SIo3OL/djarGVr8pNe1j05uW1A=", - "owner": "DreamMaoMao", - "repo": "hycov", - "rev": "de15cdd6bf2e46cbc69735307f340b57e2ce3dd0", - "type": "github" - }, - "original": { - "owner": "DreamMaoMao", - "repo": "hycov", - "type": "github" - } - }, "hyprcursor": { "inputs": { "hyprlang": [ @@ -548,7 +518,6 @@ "inputs": { "Hyprspace": "Hyprspace", "home-manager": "home-manager", - "hycov": "hycov", "hyprland": "hyprland", "hyprland-plugins": "hyprland-plugins", "nixGL": "nixGL", @@ -34,10 +34,10 @@ inputs.hyprland.follows = "hyprland"; }; - hycov = { - url = "github:DreamMaoMao/hycov"; - inputs.hyprland.follows = "hyprland"; - }; + # hycov = { + # url = "github:DreamMaoMao/hycov"; + # inputs.hyprland.follows = "hyprland"; + # }; }; outputs = { self, nixpkgs, home-manager, stylix, systems, ... } @ inputs: 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" + ]) ) ); } |