mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-11 13:50:48 -05:00
45 lines
744 B
Text
45 lines
744 B
Text
|
* {
|
||
|
background: Black;
|
||
|
foreground: White;
|
||
|
font: "Times New Roman 12";
|
||
|
}
|
||
|
|
||
|
configuration {
|
||
|
show-icons: true;
|
||
|
drun-icon-theme: "gnome";
|
||
|
}
|
||
|
|
||
|
#window {
|
||
|
anchor: north;
|
||
|
location: north;
|
||
|
}
|
||
|
|
||
|
#window box {
|
||
|
width: 100%;
|
||
|
padding: 4px;
|
||
|
children: [ horibox ];
|
||
|
}
|
||
|
|
||
|
#window horibox box {
|
||
|
orientation: horizontal;
|
||
|
children: [ prompt, entry, listview ];
|
||
|
}
|
||
|
|
||
|
#window horibox listview box {
|
||
|
layout: horizontal;
|
||
|
spacing: 5px;
|
||
|
lines: 10;
|
||
|
}
|
||
|
|
||
|
#window horibox entry {
|
||
|
expand: false;
|
||
|
width: 10em;
|
||
|
}
|
||
|
|
||
|
#window horibox listview element {
|
||
|
padding: 0px 2px;
|
||
|
}
|
||
|
#window horibox listview element selected {
|
||
|
background: SteelBlue;
|
||
|
}
|