128 lines
3.8 KiB
Text
128 lines
3.8 KiB
Text
![]() |
/*****----- Configuration -----*****/
|
||
|
configuration {
|
||
|
show-icons: false;
|
||
|
}
|
||
|
|
||
|
/*****----- Global Properties -----*****/
|
||
|
* {
|
||
|
font: "JetBrains Mono Nerd Font 12";
|
||
|
background: #11111b;
|
||
|
background-alt: #313244;
|
||
|
foreground: #eff1f5;
|
||
|
selected: #cba6f7;
|
||
|
active: #6E77FF;
|
||
|
urgent: #8E3596;
|
||
|
}
|
||
|
|
||
|
/*****----- Main Window -----*****/
|
||
|
window {
|
||
|
transparency: "real";
|
||
|
location: center;
|
||
|
anchor: center;
|
||
|
fullscreen: false;
|
||
|
width: 500px;
|
||
|
x-offset: 0px;
|
||
|
y-offset: 0px;
|
||
|
|
||
|
/* properties for all widgets */
|
||
|
enabled: true;
|
||
|
border-radius: 8px;
|
||
|
cursor: "default";
|
||
|
background-color: @background;
|
||
|
}
|
||
|
|
||
|
/*****----- Main Box -----*****/
|
||
|
mainbox {
|
||
|
enabled: true;
|
||
|
spacing: 0px;
|
||
|
background-color: transparent;
|
||
|
orientation: vertical;
|
||
|
children: [ "inputbar", "listview" ];
|
||
|
}
|
||
|
|
||
|
/*****----- Inputbar -----*****/
|
||
|
inputbar {
|
||
|
enabled: true;
|
||
|
spacing: 0px;
|
||
|
padding: 28px 24px 0px 24px;
|
||
|
background-color: transparent;
|
||
|
text-color: @foreground;
|
||
|
orientation: horizontal;
|
||
|
children: [ "textbox-prompt-colon", "dummy", "entry" ];
|
||
|
}
|
||
|
|
||
|
dummy {
|
||
|
background-color: transparent;
|
||
|
}
|
||
|
|
||
|
entry {
|
||
|
enabled: true;
|
||
|
expand: false;
|
||
|
width: 250px;
|
||
|
padding: 12px 16px 8px 16px;
|
||
|
border-radius: 8px;
|
||
|
background-color: @background-alt;
|
||
|
text-color: inherit;
|
||
|
cursor: text;
|
||
|
placeholder: "Search";
|
||
|
placeholder-color: inherit;
|
||
|
}
|
||
|
|
||
|
textbox-prompt-colon {
|
||
|
font: "Font Awesome 5 Free 14";
|
||
|
enabled: true;
|
||
|
expand: false;
|
||
|
str: "";
|
||
|
padding: 11px 14px 11px 14px;
|
||
|
border-radius: 100%;
|
||
|
background-color: #a6e3a1;
|
||
|
text-color: @background;
|
||
|
}
|
||
|
|
||
|
/*****----- Listview -----*****/
|
||
|
listview {
|
||
|
enabled: true;
|
||
|
columns: 1;
|
||
|
lines: 5;
|
||
|
cycle: true;
|
||
|
dynamic: true;
|
||
|
scrollbar: false;
|
||
|
layout: vertical;
|
||
|
reverse: false;
|
||
|
fixed-height: true;
|
||
|
fixed-columns: true;
|
||
|
|
||
|
spacing: 0px;
|
||
|
margin: 32px 24px;
|
||
|
border-radius: 8px;
|
||
|
background-color: #1e1e2e;
|
||
|
text-color: @foreground;
|
||
|
cursor: "default";
|
||
|
}
|
||
|
|
||
|
/*****----- Elements -----*****/
|
||
|
element {
|
||
|
enabled: true;
|
||
|
spacing: 0px;
|
||
|
padding: 12px 8px;
|
||
|
border-radius: 8px;
|
||
|
background-color: transparent;
|
||
|
text-color: @foreground;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
element.selected {
|
||
|
background-color: @selected;
|
||
|
text-color: @background;
|
||
|
}
|
||
|
element-icon {
|
||
|
size: 0px;
|
||
|
}
|
||
|
element-text {
|
||
|
padding: 0px 16px;
|
||
|
background-color: transparent;
|
||
|
text-color: inherit;
|
||
|
cursor: inherit;
|
||
|
vertical-align: 0.5;
|
||
|
horizontal-align: 0;
|
||
|
}
|