From 56b2d3f4fef14885331e6126a859776203a86aef Mon Sep 17 00:00:00 2001 From: nydragon Date: Thu, 6 Mar 2025 21:40:17 +0100 Subject: [PATCH] fix: cliphist on hyprland --- home/hyprland/default.nix | 14 ++++++++++---- options/services/cliphist.nix | 2 ++ 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/home/hyprland/default.nix b/home/hyprland/default.nix index 358c9b4..d9f696e 100644 --- a/home/hyprland/default.nix +++ b/home/hyprland/default.nix @@ -8,6 +8,11 @@ let inherit (lib) mapAttrsToList mkIf hasAttr; inherit (lib.my) getExe getExe'; + + desktop = osConfig.modules.system.roles.desktop; + term = getExe desktop.terminal; + filemanager = getExe desktop.filemanager; + cliphistEnabled = osConfig.modules.services.cliphist.enable; in mkIf osConfig.programs.hyprland.enable { home.sessionVariables.ELECTRON_OZONE_PLATFORM_HINT = "auto"; @@ -156,6 +161,7 @@ mkIf osConfig.programs.hyprland.enable { bind = let copy = getExe' pkgs.wl-clipboard "wl-copy"; + cliphist = getExe pkgs.cliphist; in [ "$mod, D, exec, ${getExe osConfig.modules.system.roles.desktop.runner.package}" @@ -164,7 +170,7 @@ mkIf osConfig.programs.hyprland.enable { "$mod SHIFT, Q, killactive," "$mod, V, togglefloating" "$mod SHIFT, P, exec, ${getExe pkgs.scripts.powerMenu}" - "$mod, P, exec, ${getExe pkgs.cliphist} wipe & ${getExe pkgs.hyprlock}" + "$mod, P, exec, ${cliphist} wipe & ${getExe pkgs.hyprlock}" "$mod SHIFT, C, exec, hyprctl reload" "$mod SHIFT, space, togglefloating" "$mod, left, movefocus, l" @@ -173,13 +179,13 @@ mkIf osConfig.programs.hyprland.enable { "$mod, down, movefocus, d" # Example special workspace (scratchpad) - "$mod, S, togglespecialworkspace, magic" - "$mod SHIFT, S, movetoworkspace, special:magic" + "$mod, D, togglespecialworkspace, magic" + "$mod SHIFT, D, movetoworkspace, special:magic" "$mod, X, fullscreen, 1" "$mod, F, fullscreen, 0" - "$mod, N, exec, ${pkgs.swaynotificationcenter}/bin/swaync-client -t" "$mod, U, exec, ${pkgs.hyprshot}/bin/hyprshot -o ${config.xdg.userDirs.pictures}/screenshots -m region" "$mod SHIFT, U, exec, ${pkgs.hyprshot}/bin/hyprshot --raw -m region | ${getExe pkgs.satty} -f - --fullscreen --copy-command ${copy}" + "$mod, S, exec, ${cliphist} list | ${desktop.runner.dmenu} | ${cliphist} decode | ${copy}" #: Brightness and Media {{{ ",XF86MonBrightnessUp, exec, ${pkgs.brightnessctl}/bin/brightnessctl s +10%" diff --git a/options/services/cliphist.nix b/options/services/cliphist.nix index 8777937..2d4fa5c 100644 --- a/options/services/cliphist.nix +++ b/options/services/cliphist.nix @@ -40,5 +40,7 @@ in postStop = "${cfg.package}/bin/cliphist wipe"; }; + + environment.systemPackages = [ cfg.package ]; }; }