2021-01-23 18:13:38 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
{
|
|
|
|
config = {
|
|
|
|
programs.rofi = {
|
|
|
|
enable = true;
|
|
|
|
|
2021-02-04 00:48:34 +01:00
|
|
|
theme = let inherit (config.lib.formats.rasi) mkLiteral;
|
|
|
|
in {
|
2021-02-09 15:59:29 +01:00
|
|
|
"@import" = "~/.cache/wal/colors-rofi-dark";
|
|
|
|
|
2021-01-23 18:13:38 +01:00
|
|
|
"*" = {
|
|
|
|
background-color = mkLiteral "#000000";
|
|
|
|
foreground-color = mkLiteral "rgba ( 250, 251, 252, 100 % )";
|
|
|
|
border-color = mkLiteral "#FFFFFF";
|
|
|
|
width = 512;
|
|
|
|
};
|
|
|
|
|
2021-02-04 00:48:34 +01:00
|
|
|
"#inputbar" = { children = map mkLiteral [ "prompt" "entry" ]; };
|
|
|
|
|
2021-01-23 18:13:38 +01:00
|
|
|
"#textbox-prompt-colon" = {
|
|
|
|
expand = false;
|
|
|
|
str = ":";
|
|
|
|
margin = mkLiteral "0px 0.3em 0em 0em";
|
|
|
|
text-color = mkLiteral "@foreground-color";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-09-26 11:08:45 +02:00
|
|
|
test.stubs.rofi = { };
|
2021-01-23 18:13:38 +01:00
|
|
|
|
|
|
|
nmt.script = ''
|
|
|
|
assertFileContent \
|
|
|
|
home-files/.config/rofi/config.rasi \
|
|
|
|
${./custom-theme-config.rasi}
|
|
|
|
assertFileContent \
|
|
|
|
home-files/.local/share/rofi/themes/custom.rasi \
|
|
|
|
${./custom-theme.rasi}
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|