aboutsummaryrefslogtreecommitdiff
path: root/modules/desktop/hjem/wm
diff options
context:
space:
mode:
authorCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2026-01-18 08:10:20 -0600
committerCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2026-01-18 08:10:20 -0600
commitd6c4bd6d87d31a2c688fb2fcfdb0cb15d8f9163d (patch)
tree07f85b8fac540f7625f90b10ee500a1bc8116ac3 /modules/desktop/hjem/wm
parented2550a41c8429a1d2fe897deb878717c2ebc3d1 (diff)
parent43af7f28b28021932b318964a953463d8dd79372 (diff)
Merge branch 'main' into wg
Diffstat (limited to 'modules/desktop/hjem/wm')
-rw-r--r--modules/desktop/hjem/wm/fuzzel.nix40
1 files changed, 22 insertions, 18 deletions
diff --git a/modules/desktop/hjem/wm/fuzzel.nix b/modules/desktop/hjem/wm/fuzzel.nix
index 7d61255..f9a9edb 100644
--- a/modules/desktop/hjem/wm/fuzzel.nix
+++ b/modules/desktop/hjem/wm/fuzzel.nix
@@ -8,34 +8,38 @@
settings = {
main = {
- prompt = "";
- dpi-aware = false;
+ prompt = builtins.fromJSON ''"\u200B"''; # https://discourse.nixos.org/t/how-can-i-put-an-nonprintable-character-in-a-nix-expression/47750/7
- font = "Iosevka Nerd Font";
- line-height = 25;
+ font = "Iosevka Nerd Font:size=9";
+ use-bold = true;
+ line-height = 16;
lines = 10;
- width = 30;
+ width = 20;
- horizontal-pad = 8;
- vertical-pad = 8;
+ anchor = "bottom-right";
+
+ horizontal-pad = 0;
+ vertical-pad = 0;
};
border = {
radius = 0;
width = 3;
};
- colors = with config.collinux.palette; {
- background = "${base00}99";
- border = "ffffff00";
- input = base05;
- match = base13;
- placeholder = base03;
- text = base01;
- prompt = base01;
+ colors = with config.collinux.palette; let
+ transparent = "#ffffff00";
+ in {
+ background = transparent;
+ border = transparent;
+ input = transparent;
+ match = "#${base13}ff";
+ placeholder = "#${base03}ff";
+ text = "#${base04}ff";
+ prompt = "#${base05}ff";
- selection = "${base01}5a";
- selection-match = base13;
- selection-text = base05;
+ selection = transparent;
+ selection-match = "#${base13}ff";
+ selection-text = "#${base05}ff";
};
};
in