74 lines
1.4 KiB
Text
74 lines
1.4 KiB
Text
configuration {
|
|
show-icons: true;
|
|
icon-theme: "Papirus Dark";
|
|
font: "DejaVuSansMono Nerd Font 12";
|
|
drun-display-format: "{icon} {name}";
|
|
display-run: " ";
|
|
display-drun: " ";
|
|
display-window: " ";
|
|
}
|
|
|
|
* {
|
|
transparent: #00000000;
|
|
default-background-color: #24242480;
|
|
selection-background-color: #12121280;
|
|
prompt-background-color: #42424280;
|
|
default-font-color: #52b3eb;
|
|
selection-font-color: #ffd1fe;
|
|
prompt-font-color: #cce1ff;
|
|
background-color: @default-background-color;
|
|
border: 0;
|
|
padding: 0;
|
|
margin: 0;
|
|
spacing: 0;
|
|
}
|
|
|
|
window {
|
|
height: 25%;
|
|
width: 35%;
|
|
location: north;
|
|
anchor: north;
|
|
y-offset: 0;
|
|
transparency: "real";
|
|
}
|
|
|
|
mainbox {
|
|
children: [listview, inputbar];
|
|
}
|
|
|
|
listview {
|
|
columns: 1;
|
|
padding: 0 0 0 0;
|
|
}
|
|
|
|
element {
|
|
orientation: vertical;
|
|
padding: 12 12 12 8;
|
|
text-color: @default-font-color;
|
|
background-color: @transparent;
|
|
}
|
|
|
|
element selected {
|
|
background-color: @selection-background-color;
|
|
text-color: @selection-font-color;
|
|
}
|
|
|
|
inputbar {
|
|
background-color: @prompt-background-color;
|
|
text-color: @prompt-font-color;
|
|
children: [prompt, entry];
|
|
}
|
|
|
|
prompt {
|
|
enabled: true;
|
|
background-color: @transparent;
|
|
text-color: @prompt-font-color;
|
|
padding: 12 0 0 8;
|
|
font: "DejaVu Sans Mono for Powerline 11";
|
|
}
|
|
|
|
entry {
|
|
background-color: @transparent;
|
|
text-color: @prompt-font-color;
|
|
padding: 12;
|
|
}
|