From a8f614c074536220e4e2b498f118cc08e67de938 Mon Sep 17 00:00:00 2001 From: Antoine Vaure Date: Tue, 9 Dec 2025 17:35:05 +0100 Subject: [PATCH 1/2] hyprland: add Matplotlib class to floating window rule --- home/hyprland.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/home/hyprland.nix b/home/hyprland.nix index 6f53bea..c398d6b 100644 --- a/home/hyprland.nix +++ b/home/hyprland.nix @@ -298,6 +298,7 @@ env = HYPRCURSOR_SIZE,24 windowrule = float, class:floating + windowrule = float, class:Matplotlib windowrule = tile, class:Nsxiv # fix kdeconnect presentation mode. credit: https://www.reddit.com/r/hyprland/comments/1d0f2ou/to_the_one_person_using_kde_connect_presentation/ From ff117532663b2dbd376947e7843b3d1d80c5f6a1 Mon Sep 17 00:00:00 2001 From: Antoine Vaure Date: Tue, 9 Dec 2025 17:35:42 +0100 Subject: [PATCH 2/2] add debugpy to home programs --- home/base.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/base.nix b/home/base.nix index 92bec9d..ca3fca2 100644 --- a/home/base.nix +++ b/home/base.nix @@ -12,7 +12,7 @@ home.packages = with pkgs; [ file - python3 + (python3.withPackages (ps: with ps; [ debugpy ])) sshfs ripgrep ];