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;
|
2020-04-10 14:52:54 +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;
|
2020-06-10 17:37:25 +02:00
|
|
|
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;
|
2020-06-10 17:37:25 +02:00
|
|
|
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;
|
2020-06-10 17:37:25 +02:00
|
|
|
highlight = {
|
|
|
|
|
foreground = colours.magenta.dark;
|
|
|
|
|
inherit (window) background;
|
|
|
|
|
};
|
2019-04-19 03:11:51 +02:00
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
}
|