restore fuzzel module
Some checks are pending
nix-build / default-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / petalburg-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run

This commit is contained in:
Aly Raffauf 2024-08-15 02:05:31 -04:00
parent 98c0470bc4
commit ad0e824804
4 changed files with 28 additions and 2 deletions

View file

@ -6,6 +6,7 @@
./emacs ./emacs
./fastfetch ./fastfetch
./firefox ./firefox
./fuzzel
./helix ./helix
./keepassxc ./keepassxc
./kitty ./kitty

View file

@ -0,0 +1,26 @@
{
config,
lib,
...
}: let
cfg = config.ar.home;
in {
config = lib.mkIf cfg.apps.fuzzel.enable {
programs.fuzzel = {
enable = true;
settings = {
border = {
radius = cfg.theme.borderRadius;
width = 4;
};
main = {
layer = "overlay";
lines = 3;
terminal = lib.getExe cfg.defaultApps.terminal;
width = 36;
};
};
};
};
}

View file

@ -45,7 +45,7 @@ in {
gtk = { gtk = {
iconTheme = { iconTheme = {
name = name =
if cfg.darkMode if config.stylix.polarity == "dark"
then "Papirus-Dark" then "Papirus-Dark"
else "Papirus"; else "Papirus";

View file

@ -116,7 +116,6 @@ self: {
theme = { theme = {
enable = true; enable = true;
borderRadius = 0; borderRadius = 0;
darkMode = true;
}; };
}; };
} }