feat(rofi): add message box to rofi
This commit is contained in:
parent
9ace4cdd07
commit
774bb3dce8
1 changed files with 11 additions and 1 deletions
|
|
@ -19,6 +19,7 @@ in
|
||||||
background = mkLiteral "#${colors.base00}";
|
background = mkLiteral "#${colors.base00}";
|
||||||
foreground = mkLiteral "#${colors.base05}";
|
foreground = mkLiteral "#${colors.base05}";
|
||||||
selected = mkLiteral "#${colors.base0B}";
|
selected = mkLiteral "#${colors.base0B}";
|
||||||
|
message = mkLiteral "#${colors.base0D}";
|
||||||
|
|
||||||
background-color = mkLiteral "@background";
|
background-color = mkLiteral "@background";
|
||||||
border-color = mkLiteral "@foreground";
|
border-color = mkLiteral "@foreground";
|
||||||
|
|
@ -30,7 +31,16 @@ in
|
||||||
width = mkLiteral "15%";
|
width = mkLiteral "15%";
|
||||||
border = mkLiteral "2";
|
border = mkLiteral "2";
|
||||||
padding = mkLiteral "10";
|
padding = mkLiteral "10";
|
||||||
children = mkLiteral "[inputbar,listview]";
|
children = mkLiteral "[message,listview,inputbar]";
|
||||||
|
};
|
||||||
|
|
||||||
|
"message" = {
|
||||||
|
children = mkLiteral "[textbox]";
|
||||||
|
};
|
||||||
|
|
||||||
|
"textbox" = {
|
||||||
|
text-color = mkLiteral "@message";
|
||||||
|
horizontal-align = mkLiteral "0.50";
|
||||||
};
|
};
|
||||||
|
|
||||||
"inputbar" = {
|
"inputbar" = {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue