mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 11:13:54 -05:00
fuzzel: set border size
This commit is contained in:
parent
e06c50f869
commit
f4ccd95637
|
@ -1,20 +1,23 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.fuzzel = {
|
||||
enable = true;
|
||||
settings = {
|
||||
main = {
|
||||
font = "Noto Nerd Font Sans Mono";
|
||||
icon-theme = "breeze";
|
||||
layer = "overlay";
|
||||
terminal = "${pkgs.alacritty}/bin/alacritty -e";
|
||||
};
|
||||
colors.background = "#00000099";
|
||||
colors.selection = "#000000FF";
|
||||
colors.selection-match = "#FF0000FF";
|
||||
colors.selection-text = "#008000FF";
|
||||
colors.text = "#FFFFFFFF";
|
||||
programs.fuzzel = {
|
||||
enable = true;
|
||||
settings = {
|
||||
main = {
|
||||
font = "Noto Nerd Font Sans Mono";
|
||||
icon-theme = "breeze";
|
||||
layer = "overlay";
|
||||
terminal = "${pkgs.alacritty}/bin/alacritty -e";
|
||||
};
|
||||
border = { width = 2; };
|
||||
colors = {
|
||||
background = "#00000099";
|
||||
selection = "#000000FF";
|
||||
selection-match = "#FF0000FF";
|
||||
selection-text = "#008000FF";
|
||||
text = "#FFFFFFFF";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue