143 lines
3.9 KiB
Plaintext
143 lines
3.9 KiB
Plaintext
|
|
||
|
configuration {
|
||
|
show-icons: false;
|
||
|
font: "Iosevka 10";
|
||
|
}
|
||
|
|
||
|
@import "colors.rasi"
|
||
|
|
||
|
window {
|
||
|
transparency: "real";
|
||
|
location: center;
|
||
|
anchor: center;
|
||
|
fullscreen: false;
|
||
|
width: 600px;
|
||
|
x-offset: 0px;
|
||
|
y-offset: 0px;
|
||
|
margin: 0px;
|
||
|
padding: 0px;
|
||
|
border: 4px;
|
||
|
border-radius: 4px;
|
||
|
border-color: @selected;
|
||
|
cursor: "default";
|
||
|
background-color: @background;
|
||
|
}
|
||
|
|
||
|
mainbox {
|
||
|
enabled: true;
|
||
|
spacing: 10px;
|
||
|
margin: 0px;
|
||
|
padding: 20px;
|
||
|
background-color: transparent;
|
||
|
children: [ "inputbar", "message", "listview" ];
|
||
|
}
|
||
|
|
||
|
inputbar {
|
||
|
enabled: true;
|
||
|
spacing: 10px;
|
||
|
padding: 0px;
|
||
|
border: 0px;
|
||
|
border-radius: 0px;
|
||
|
border-color: @selected;
|
||
|
background-color: transparent;
|
||
|
text-color: @foreground;
|
||
|
children: [ "textbox-prompt-colon", "prompt"];
|
||
|
}
|
||
|
|
||
|
textbox-prompt-colon {
|
||
|
enabled: true;
|
||
|
expand: false;
|
||
|
str: "";
|
||
|
padding: 10px 12px;
|
||
|
border-radius: 4px;
|
||
|
background-color: @on;
|
||
|
text-color: @background;
|
||
|
}
|
||
|
|
||
|
prompt {
|
||
|
enabled: true;
|
||
|
padding: 10px;
|
||
|
border-radius: 4px;
|
||
|
background-color: @selected;
|
||
|
text-color: @background;
|
||
|
}
|
||
|
|
||
|
message {
|
||
|
enabled: true;
|
||
|
margin: 0px;
|
||
|
padding: 10px;
|
||
|
border: 4px;
|
||
|
border-radius: 4px;
|
||
|
border-color: @selected;
|
||
|
background-color: @selected;
|
||
|
text-color: @background;
|
||
|
}
|
||
|
|
||
|
textbox {
|
||
|
background-color: inherit;
|
||
|
text-color: inherit;
|
||
|
vertical-align: 0.5;
|
||
|
horizontal-align: 0.0;
|
||
|
}
|
||
|
|
||
|
listview {
|
||
|
enabled: true;
|
||
|
columns: 5;
|
||
|
lines: 3;
|
||
|
cycle: true;
|
||
|
scrollbar: false;
|
||
|
layout: vertical;
|
||
|
|
||
|
spacing: 10px;
|
||
|
background-color: transparent;
|
||
|
cursor: "default";
|
||
|
}
|
||
|
|
||
|
element {
|
||
|
enabled: true;
|
||
|
padding: 22px 10px;
|
||
|
border: 4px;
|
||
|
border-radius: 4px;
|
||
|
border-color: @selected;
|
||
|
background-color: transparent;
|
||
|
text-color: @foreground;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
|
||
|
element-text {
|
||
|
font: "feather 12";
|
||
|
background-color: transparent;
|
||
|
text-color: inherit;
|
||
|
cursor: inherit;
|
||
|
vertical-align: 0.5;
|
||
|
horizontal-align: 0.5;
|
||
|
}
|
||
|
|
||
|
element normal.normal,
|
||
|
element alternate.normal {
|
||
|
border: 4px;
|
||
|
border-radius: 4px;
|
||
|
border-color: @selected;
|
||
|
background-color: var(background);
|
||
|
text-color: var(foreground);
|
||
|
}
|
||
|
|
||
|
element normal.urgent,
|
||
|
element alternate.urgent,
|
||
|
element selected.active {
|
||
|
background-color: var(urgent);
|
||
|
text-color: var(background);
|
||
|
}
|
||
|
|
||
|
element normal.active,
|
||
|
element alternate.active,
|
||
|
element selected.urgent {
|
||
|
background-color: var(on);
|
||
|
text-color: var(background);
|
||
|
}
|
||
|
|
||
|
element selected.normal {
|
||
|
background-color: var(selected);
|
||
|
text-color: var(background);
|
||
|
}
|