mirror of
https://github.com/semere-meb/dotfiles-nix.git
synced 2026-08-03 10:24:36 +00:00
added back simple desktop stack as alternatives
This commit is contained in:
parent
febd23355d
commit
552ae67f6a
9 changed files with 153 additions and 2 deletions
38
modules/fuzzel.nix
Normal file
38
modules/fuzzel.nix
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
userVars,
|
||||
...
|
||||
}:
|
||||
|
||||
{
|
||||
home-manager.users."${userVars.username}" = {
|
||||
programs.fuzzel = {
|
||||
enable = true;
|
||||
settings = {
|
||||
main = {
|
||||
font = "JetBrainsMono Nerd Font:size=13";
|
||||
dpi-aware = "auto";
|
||||
width = 40;
|
||||
line-height = 18;
|
||||
fields = "name,generic,comment,categories,filename,keywords";
|
||||
terminal = "foot";
|
||||
};
|
||||
colors = {
|
||||
background = "1e1e2eff";
|
||||
text = "cdd6f4ff";
|
||||
match = "f38ba8ff";
|
||||
selection = "585b70ff";
|
||||
selection-text = "cdd6f4ff";
|
||||
selection-match = "f38ba8ff";
|
||||
border = "89b4faff";
|
||||
};
|
||||
border = {
|
||||
width = 2;
|
||||
radius = 4;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue