31 lines
544 B
Plaintext
31 lines
544 B
Plaintext
@import "../config.rasi"
|
|
@import "../colors.rasi"
|
|
|
|
window {
|
|
width: 1024;
|
|
height: 768;
|
|
}
|
|
|
|
listview {
|
|
columns: 1;
|
|
lines: 5;
|
|
}
|
|
|
|
inputbar {
|
|
children: [ "textbox-prompt-colon", "entry"];
|
|
}
|
|
|
|
element {
|
|
orientation:horizontal;
|
|
children: ["element-icon", "element-text"];
|
|
}
|
|
element-icon {
|
|
size: 0;
|
|
}
|
|
|
|
element-text {
|
|
vertical-align: 0.5;
|
|
horizontal-align: 0.0;
|
|
background:red;
|
|
}
|