summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-08-23 02:59:37 -0700
committerFuwn <[email protected]>2024-08-23 02:59:37 -0700
commitfec2c162bea33b1cba5771d98cdbc86ab2b4501a (patch)
tree225a72c80c4f7d68b93076db198b6fe5ffecf3c7
parenth (diff)
downloadhome-manager-config-fec2c162bea33b1cba5771d98cdbc86ab2b4501a.tar.xz
home-manager-config-fec2c162bea33b1cba5771d98cdbc86ab2b4501a.zip
remove hycov
-rw-r--r--flake.lock31
-rw-r--r--flake.nix8
-rw-r--r--home/fuwn/meta/desktop/wayland/hyprland/default.nix2
-rw-r--r--home/fuwn/meta/desktop/wayland/hyprland/hyprland/binds.nix2
-rw-r--r--home/fuwn/meta/desktop/wayland/hyprland/hyprland/default.nix31
5 files changed, 20 insertions, 54 deletions
diff --git a/flake.lock b/flake.lock
index 5a3895c..4cc887f 100644
--- a/flake.lock
+++ b/flake.lock
@@ -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",
diff --git a/flake.nix b/flake.nix
index 3c6bc38..e169148 100644
--- a/flake.nix
+++ b/flake.nix
@@ -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"
+ ])
)
);
}