2019-04-19 03:11:51 +02:00
|
|
|
{ config, ... }:
|
2019-04-19 15:02:05 +02:00
|
|
|
with config.niveum; {
|
2019-04-19 03:11:51 +02:00
|
|
|
home-manager.users.me.programs.rofi = {
|
|
|
|
|
enable = true;
|
|
|
|
|
separator = "solid";
|
|
|
|
|
scrollbar = false;
|
|
|
|
|
borderWidth = 0;
|
|
|
|
|
lines = 5;
|
2019-09-25 10:11:18 +02:00
|
|
|
font = "Monospace ${toString (fonts.size + 1)}";
|
2019-04-19 03:11:51 +02:00
|
|
|
colors = rec {
|
2019-04-19 15:02:05 +02:00
|
|
|
window = rec {
|
|
|
|
|
background = colours.foreground;
|
|
|
|
|
border = background;
|
|
|
|
|
separator = colours.black.bright;
|
2019-04-19 03:11:51 +02:00
|
|
|
};
|
|
|
|
|
rows = {
|
|
|
|
|
normal = {
|
|
|
|
|
background = window.background;
|
|
|
|
|
backgroundAlt = window.background;
|
2019-04-19 15:02:05 +02:00
|
|
|
foreground = colours.background;
|
|
|
|
|
highlight = { foreground = colours.cyan.dark; inherit (window) background; };
|
2019-04-19 03:11:51 +02:00
|
|
|
};
|
|
|
|
|
active = {
|
|
|
|
|
background = window.background;
|
|
|
|
|
backgroundAlt = window.background;
|
2019-04-19 15:02:05 +02:00
|
|
|
foreground = colours.yellow.dark;
|
|
|
|
|
highlight = { foreground = colours.green.dark; inherit (window) background; };
|
2019-04-19 03:11:51 +02:00
|
|
|
};
|
|
|
|
|
urgent = {
|
|
|
|
|
background = window.background;
|
|
|
|
|
backgroundAlt = window.background;
|
2019-04-19 15:02:05 +02:00
|
|
|
foreground = colours.red.dark;
|
|
|
|
|
highlight = { foreground = colours.magenta.dark; inherit (window) background; };
|
2019-04-19 03:11:51 +02:00
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
}
|