aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2026-01-16 17:38:20 -0600
committerCollin Williams <96917990+bluedragon1221@users.noreply.github.com>2026-01-16 17:38:20 -0600
commit06aadaacf55900cc1cf4be411c2dde1297656cd1 (patch)
treefb57a6422c0b98e5d3c2102f6d237f86ada377e7 /modules
parente7c83878a87355f30716fa0a91e128b1e21cc898 (diff)
work on fuzzel configuration
Diffstat (limited to 'modules')
-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