Retheme rofi
Use custom theme derived from catppuccin-rofi instead of stylix, use stylix for colour palette still
This commit is contained in:
parent
81c1382843
commit
f0d7466cc5
|
@ -3,9 +3,9 @@
|
||||||
pkgs,
|
pkgs,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
stylix.targets.rofi.enable = true;
|
|
||||||
programs.rofi = {
|
programs.rofi = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
font = config.stylix.fonts.monospace.name;
|
||||||
location = "center";
|
location = "center";
|
||||||
pass = {
|
pass = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@ -35,5 +35,103 @@
|
||||||
display-combi = " Combi ";
|
display-combi = " Combi ";
|
||||||
display-power-menu = " Power ";
|
display-power-menu = " Power ";
|
||||||
};
|
};
|
||||||
|
theme = with config.lib.stylix.colors; let
|
||||||
|
inherit (config.lib.formats.rasi) mkLiteral;
|
||||||
|
bg = mkLiteral "rgba (${base00-rgb-r}, ${base00-rgb-g}, ${base00-rgb-b}, 50%)";
|
||||||
|
bg2 = mkLiteral "rgba (${base01-rgb-r}, ${base01-rgb-g}, ${base01-rgb-b}, 80%)";
|
||||||
|
fg = mkLiteral withHashtag.base05;
|
||||||
|
fg2 = mkLiteral withHashtag.base04;
|
||||||
|
border = mkLiteral withHashtag.base07;
|
||||||
|
blue = mkLiteral withHashtag.blue;
|
||||||
|
in {
|
||||||
|
"*" = {
|
||||||
|
background-color = mkLiteral "transparent";
|
||||||
|
text-color = fg;
|
||||||
|
font = with config.stylix.fonts; "${monospace.name} ${toString sizes.popups}";
|
||||||
|
};
|
||||||
|
|
||||||
|
window = {
|
||||||
|
height = mkLiteral "75%";
|
||||||
|
width = mkLiteral "75%";
|
||||||
|
border = mkLiteral "1px";
|
||||||
|
border-color = border;
|
||||||
|
border-radius = mkLiteral "10px";
|
||||||
|
background-color = bg;
|
||||||
|
};
|
||||||
|
|
||||||
|
inputbar = {
|
||||||
|
children = map mkLiteral ["prompt" "entry"];
|
||||||
|
padding = mkLiteral "2px";
|
||||||
|
};
|
||||||
|
|
||||||
|
prompt = {
|
||||||
|
background-color = bg2;
|
||||||
|
padding = mkLiteral "6px";
|
||||||
|
text-color = blue;
|
||||||
|
border-radius = mkLiteral "10px";
|
||||||
|
margin = mkLiteral "20px 0px 0px 20px";
|
||||||
|
};
|
||||||
|
|
||||||
|
textbox-prompt-colon = {
|
||||||
|
expand = false;
|
||||||
|
str = "=";
|
||||||
|
};
|
||||||
|
|
||||||
|
entry = {
|
||||||
|
padding = mkLiteral "6px";
|
||||||
|
margin = mkLiteral "20px 0px 0px 10px";
|
||||||
|
};
|
||||||
|
|
||||||
|
listview = {
|
||||||
|
border = mkLiteral "0px 0px 0px";
|
||||||
|
padding = mkLiteral "6px 0px 0px";
|
||||||
|
margin = mkLiteral "10px 0px 0px 20px";
|
||||||
|
columns = 2;
|
||||||
|
lines = 5;
|
||||||
|
};
|
||||||
|
|
||||||
|
element = {
|
||||||
|
padding = mkLiteral "5px";
|
||||||
|
};
|
||||||
|
|
||||||
|
"element-icon" = {
|
||||||
|
size = mkLiteral "25px";
|
||||||
|
};
|
||||||
|
|
||||||
|
"element selected" = {
|
||||||
|
background-color = bg2;
|
||||||
|
text-color = blue;
|
||||||
|
border-radius = mkLiteral "10px";
|
||||||
|
};
|
||||||
|
|
||||||
|
mode-switcher = {
|
||||||
|
spacing = 0;
|
||||||
|
};
|
||||||
|
|
||||||
|
button = {
|
||||||
|
padding = mkLiteral "10px";
|
||||||
|
text-color = fg2;
|
||||||
|
border-radius = mkLiteral "10px";
|
||||||
|
vertical-align = mkLiteral "0.5";
|
||||||
|
horizontal-align = mkLiteral "0.5";
|
||||||
|
};
|
||||||
|
|
||||||
|
"button selected" = {
|
||||||
|
background-color = bg2;
|
||||||
|
text-color = blue;
|
||||||
|
};
|
||||||
|
|
||||||
|
message = {
|
||||||
|
margin = mkLiteral "2px";
|
||||||
|
padding = mkLiteral "2px";
|
||||||
|
border-radius = mkLiteral "5px";
|
||||||
|
};
|
||||||
|
|
||||||
|
textbox = {
|
||||||
|
padding = mkLiteral "6px";
|
||||||
|
margin = mkLiteral "20px 0px 0px 20px";
|
||||||
|
text-color = blue;
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue