1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 18:21:07 +01:00
Files
niveum/dot/rofi.nix
Kierán Meinhardt 6a1b362bba rofi: terminal font
2019-04-14 10:28:43 +02:00

39 lines
1.2 KiB
Nix

{ config }:
with import <dot/theme.nix>;
{
enable = true;
separator = "solid";
scrollbar = false;
terminal = config.defaultApplications.terminal;
borderWidth = 0;
lines = 5;
font = "${terminalFont.name} ${toString (terminalFont.size + 1)}";
colors = rec {
window = {
background = invertedColorScheme.background;
border = invertedColorScheme.background;
separator = invertedColorScheme.black.light;
};
rows = {
normal = {
background = window.background;
backgroundAlt = window.background;
foreground = invertedColorScheme.foreground;
highlight = { foreground = invertedColorScheme.cyan.dark; inherit (window) background; };
};
active = {
background = window.background;
backgroundAlt = window.background;
foreground = invertedColorScheme.yellow.dark;
highlight = { foreground = invertedColorScheme.green.dark; inherit (window) background; };
};
urgent = {
background = window.background;
backgroundAlt = window.background;
foreground = invertedColorScheme.red.dark;
highlight = { foreground = invertedColorScheme.magenta.dark; inherit (window) background; };
};
};
};
}