156 lines
4.3 KiB
Text
156 lines
4.3 KiB
Text
/*
|
|
* AUTHOR: Luca
|
|
*/
|
|
|
|
configuration {
|
|
show-icons: false;
|
|
display-drun: "";
|
|
drun-display-format: "{name}";
|
|
disable-history: false;
|
|
click-to-exit: true;
|
|
location: 4;
|
|
font: "Roboto Bold 12";
|
|
}
|
|
/* Line Responsible For Button Layouts */
|
|
/* BUTTON = TRUE */
|
|
|
|
window {
|
|
transparency: "real";
|
|
background-color: @background;
|
|
text-color: @foreground;
|
|
border: 0px;
|
|
border-color: @brdr;
|
|
border-radius: 8px;
|
|
width: 150px;
|
|
x-offset: -20px;
|
|
y-offset: 0px;
|
|
}
|
|
|
|
prompt {
|
|
enabled: true;
|
|
margin: 0px 0px 0px 0px;
|
|
padding: 8px;
|
|
background-color: @background-alt;
|
|
text-color: @foreground;
|
|
border: 0px 0px 0px 0px;
|
|
border-color: @background;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
textbox-prompt-colon {
|
|
expand: true;
|
|
str: "";
|
|
border-radius: 0px;
|
|
background-color: @selected;
|
|
text-color: @background;
|
|
padding: 8px 12px 8px 12px;
|
|
font: "Cascadia Code Bold 6";
|
|
}
|
|
|
|
entry {
|
|
background-color: @background-alt;
|
|
text-color: @foreground;
|
|
placeholder-color: @foreground;
|
|
expand: true;
|
|
vertical-align: 10;
|
|
placeholder: "Search...";
|
|
blink: true;
|
|
border: 0px 0px 0px 0px;
|
|
border-color: @background;
|
|
border-radius: 0px;
|
|
padding: 8px;
|
|
}
|
|
|
|
inputbar {
|
|
children: [ textbox-prompt-colon, prompt ];
|
|
background-color: @background-alt;
|
|
text-color: @foreground;
|
|
expand: false;
|
|
border: 0px 0px 0px 0px;
|
|
border-radius: 0px;
|
|
border-color: @background;
|
|
margin: 0px 0px 0px 0px;
|
|
padding: 0px;
|
|
position: center;
|
|
}
|
|
|
|
case-indicator {
|
|
background-color: @background;
|
|
text-color: @foreground;
|
|
spacing: 0;
|
|
}
|
|
|
|
|
|
listview {
|
|
background-color: @background;
|
|
columns: 1;
|
|
lines: 6;
|
|
spacing: 10px;
|
|
cycle: true;
|
|
dynamic: true;
|
|
layout: vertical;
|
|
}
|
|
|
|
mainbox {
|
|
background-color: @background;
|
|
children: [ listview ];
|
|
spacing: 15px;
|
|
padding: 15px;
|
|
}
|
|
|
|
element {
|
|
background-color: @background;
|
|
text-color: @foreground;
|
|
orientation: horizontal;
|
|
border-radius: 0px;
|
|
padding: 12.5px 5px 10px 5px;
|
|
}
|
|
|
|
element-icon {
|
|
background-color: inherit;
|
|
text-color: inherit;
|
|
horizontal-align: 0.5;
|
|
vertical-align: 0.5;
|
|
size: 0px;
|
|
border: 0px;
|
|
}
|
|
|
|
element-text {
|
|
background-color: inherit;
|
|
text-color: inherit;
|
|
font: "Cascadia Code Bold 12";
|
|
expand: true;
|
|
horizontal-align: 0.5;
|
|
vertical-align: 0.5;
|
|
margin: 0px;
|
|
}
|
|
|
|
element selected {
|
|
background-color: @selected;
|
|
text-color: @foreground;
|
|
border: 0px 0px 0px 0px;
|
|
border-radius: 10px;
|
|
border-color: @background;
|
|
}
|
|
|
|
element.active,
|
|
element.selected.urgent {
|
|
background-color: @on;
|
|
text-color: @background;
|
|
border-color: @on;
|
|
}
|
|
|
|
element.selected.urgent {
|
|
border-color: @background;
|
|
}
|
|
|
|
element.urgent,
|
|
element.selected.active {
|
|
background-color: @off;
|
|
text-color: @background;
|
|
border-color: @off;
|
|
}
|
|
|
|
element.selected.active {
|
|
border-color: @background;
|
|
}
|