2025-11-02 20:56:05 +01:00
|
|
|
{ pkgs, lib, ... }:
|
2025-04-05 11:40:13 +02:00
|
|
|
{
|
|
|
|
|
config.programs.fuzzel = {
|
|
|
|
|
enable = true;
|
|
|
|
|
settings = {
|
|
|
|
|
main = {
|
2025-11-02 20:56:05 +01:00
|
|
|
terminal = "${lib.getBin pkgs.gnome-console}/bin/kgx";
|
2025-04-05 11:40:13 +02:00
|
|
|
icon-theme = "Adwaita";
|
|
|
|
|
counter = true;
|
2025-11-02 20:56:05 +01:00
|
|
|
font = "sans:size=11";
|
|
|
|
|
launch-prefix = "niri msg action spawn --";
|
2025-04-05 11:40:13 +02:00
|
|
|
};
|
|
|
|
|
colors = {
|
|
|
|
|
border = "0003B3FF";
|
|
|
|
|
background = "0F0F0FFF";
|
|
|
|
|
text = "657b83ff";
|
|
|
|
|
prompt = "586e75ff";
|
|
|
|
|
placeholder = "93a1a1ff";
|
|
|
|
|
input = "657b83ff";
|
|
|
|
|
match = "cb4b16ff";
|
|
|
|
|
selection = "eee8d5ff";
|
|
|
|
|
selection-text = "586e75ff";
|
|
|
|
|
selection-match = "cb4b16ff";
|
|
|
|
|
counter = "93a1a1ff";
|
|
|
|
|
};
|
|
|
|
|
border = {
|
|
|
|
|
radius = 30;
|
|
|
|
|
width = 3;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
}
|