fuzzel: set border size

This commit is contained in:
Aly Raffauf 2024-03-24 15:59:13 -04:00
parent e06c50f869
commit f4ccd95637

View file

@ -1,20 +1,23 @@
{ config, pkgs, ... }: { config, pkgs, ... }:
{ {
programs.fuzzel = { programs.fuzzel = {
enable = true; enable = true;
settings = { settings = {
main = { main = {
font = "Noto Nerd Font Sans Mono"; font = "Noto Nerd Font Sans Mono";
icon-theme = "breeze"; icon-theme = "breeze";
layer = "overlay"; layer = "overlay";
terminal = "${pkgs.alacritty}/bin/alacritty -e"; terminal = "${pkgs.alacritty}/bin/alacritty -e";
}; };
colors.background = "#00000099"; border = { width = 2; };
colors.selection = "#000000FF"; colors = {
colors.selection-match = "#FF0000FF"; background = "#00000099";
colors.selection-text = "#008000FF"; selection = "#000000FF";
colors.text = "#FFFFFFFF"; selection-match = "#FF0000FF";
selection-text = "#008000FF";
text = "#FFFFFFFF";
}; };
}; };
};
} }