add fuzzel
This commit is contained in:
parent
550110708e
commit
05afae1059
|
@ -7,6 +7,7 @@
|
|||
++ [(import ./cava.nix)] # audio visualizer
|
||||
++ [(import ./discord.nix)] # discord with catppuccin theme
|
||||
++ [(import ./floorp/floorp.nix)] # firefox based browser
|
||||
++ [(import ./fuzzel.nix)] # launcher
|
||||
++ [(import ./gaming.nix)] # packages related to gaming
|
||||
++ [(import ./git.nix)] # version control
|
||||
++ [(import ./gtk.nix)] # gtk theme
|
||||
|
|
34
modules/home/fuzzel.nix
Normal file
34
modules/home/fuzzel.nix
Normal file
|
@ -0,0 +1,34 @@
|
|||
{ ... }:
|
||||
{
|
||||
programs.fuzzel = {
|
||||
enable = true;
|
||||
settings = {
|
||||
main = {
|
||||
font = "JetBrainsMono Nerd Font:weight=bold:size=14";
|
||||
line-height = 25;
|
||||
fields = "name,generic,comment,categories,filename,keywords";
|
||||
terminal = "kitty";
|
||||
prompt = "' ➜ '" ;
|
||||
icon-theme = "Papirus-Dark";
|
||||
layer = "overlay";
|
||||
lines = 10;
|
||||
width = 35;
|
||||
horizontal-pad = 25;
|
||||
inner-pad = 5;
|
||||
};
|
||||
colors = {
|
||||
background = "1e1e2eaa";
|
||||
text = "cdd6f4ff";
|
||||
match = "f38ba8ff";
|
||||
selection = "585b70ff";
|
||||
selection-match = "f38ba8ff";
|
||||
selection-text = "cdd6f4ff";
|
||||
border = "b4befeff";
|
||||
};
|
||||
border = {
|
||||
radius = 15;
|
||||
width = 3;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue