From 59310fd22769ff3218f628cc2987c672a21dce51 Mon Sep 17 00:00:00 2001 From: Charlie Root Date: Tue, 27 Aug 2024 20:57:24 +0200 Subject: [PATCH] fuzzel.nix: fix settings, conform to INI file format --- modules/programs/launchers/fuzzel.nix | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/modules/programs/launchers/fuzzel.nix b/modules/programs/launchers/fuzzel.nix index 33ccb3c..fb47eb2 100644 --- a/modules/programs/launchers/fuzzel.nix +++ b/modules/programs/launchers/fuzzel.nix @@ -2,6 +2,7 @@ config, lib, pkgs, + ... }: let inherit (lib) mkIf; inherit (config.modules.other.system) username; @@ -13,12 +14,14 @@ in { enable = true; package = pkgs.fuzzel; settings = { - icon-theme = "Papirus-Dark"; - font = "ComicShannsMono:weight=bold:size=36"; - terminal = "foot -e"; - # make fuzzel appear on fullscreen windows - layer = "overlay"; - background = "000000"; + main = { + terminal = "${pkgs.foot}/bin/foot -e"; + # make fuzzel appear on fullscreen windows + layer = "overlay"; + icon-theme = "Papirus-Dark"; + font = "ComicShannsMono:weight=regular:size=14"; + }; + # background = "000000"; }; }; };