1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2025-01-27 15:25:24 -05:00
rofi/themes/dmenu.rasi

43 lines
674 B
Text
Raw Normal View History

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