rofi/themes/dmenu.rasi

44 lines
748 B
Plaintext
Raw Permalink Normal View History

2017-10-01 10:55:42 +00:00
/**
* ROFI Color theme
* User: Qball
* Copyright: Dave Davenport
*/
2017-06-05 18:31:32 +00:00
* {
2017-09-09 12:50:23 +00:00
background-color: Black;
border-color: White;
text-color: White;
2017-06-05 18:31:32 +00:00
font: "Times New Roman 12";
}
window {
2017-06-05 18:31:32 +00:00
anchor: north;
location: north;
width: 100%;
2017-10-01 10:55:42 +00:00
padding: 4px;
2017-06-05 18:31:32 +00:00
children: [ horibox ];
}
horibox {
2017-06-05 18:31:32 +00:00
orientation: horizontal;
2017-10-01 10:55:42 +00:00
children: [ prompt, entry, listview ];
2017-06-05 18:31:32 +00:00
}
listview {
2017-06-05 18:31:32 +00:00
layout: horizontal;
spacing: 5px;
2017-09-09 12:50:23 +00:00
lines: 100;
2017-06-05 18:31:32 +00:00
}
entry {
2017-06-05 18:31:32 +00:00
expand: false;
width: 10em;
}
element {
2017-06-05 18:31:32 +00:00
padding: 0px 2px;
}
element selected {
2017-09-09 12:50:23 +00:00
background-color: SteelBlue;
2017-06-05 18:31:32 +00:00
}
2021-08-30 19:32:23 +00:00
element-text, element-icon {
background-color: inherit;
text-color: inherit;
}