mirror of
https://github.com/kmein/niveum
synced 2026-03-16 18:21:07 +01:00
40 lines
1.2 KiB
Nix
40 lines
1.2 KiB
Nix
{ config, ... }:
|
|
with config.niveum; {
|
|
home-manager.users.me.programs.rofi = {
|
|
enable = true;
|
|
separator = "solid";
|
|
scrollbar = false;
|
|
terminal = applications.terminal;
|
|
borderWidth = 0;
|
|
lines = 5;
|
|
font = "${fonts.terminal.name} ${toString (fonts.terminal.size + 1)}";
|
|
colors = rec {
|
|
window = rec {
|
|
background = colours.foreground;
|
|
border = background;
|
|
separator = colours.black.bright;
|
|
};
|
|
rows = {
|
|
normal = {
|
|
background = window.background;
|
|
backgroundAlt = window.background;
|
|
foreground = colours.background;
|
|
highlight = { foreground = colours.cyan.dark; inherit (window) background; };
|
|
};
|
|
active = {
|
|
background = window.background;
|
|
backgroundAlt = window.background;
|
|
foreground = colours.yellow.dark;
|
|
highlight = { foreground = colours.green.dark; inherit (window) background; };
|
|
};
|
|
urgent = {
|
|
background = window.background;
|
|
backgroundAlt = window.background;
|
|
foreground = colours.red.dark;
|
|
highlight = { foreground = colours.magenta.dark; inherit (window) background; };
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|