80 lines
923 B
Text
80 lines
923 B
Text
configuration {
|
|
font: "FiraCode Nerd Font 14";
|
|
|
|
drun {
|
|
display-name: "";
|
|
}
|
|
|
|
run {
|
|
display-name: "";
|
|
}
|
|
|
|
window {
|
|
display-name: "";
|
|
}
|
|
|
|
timeout {
|
|
delay: 20;
|
|
action: "kb-cancel";
|
|
}
|
|
}
|
|
|
|
* {
|
|
border: 0;
|
|
margin: 0;
|
|
padding: 0;
|
|
spacing: 0;
|
|
|
|
bg: #282a36;
|
|
fg: #f8f8f2;
|
|
blue: #6272a4;
|
|
purple: #bd93f9;
|
|
|
|
background-color: @bg;
|
|
text-color: @fg;
|
|
}
|
|
|
|
window {
|
|
transparency: "real";
|
|
}
|
|
|
|
mainbox {
|
|
children: [inputbar, listview];
|
|
}
|
|
|
|
inputbar {
|
|
background-color: @blue;
|
|
children: [prompt, entry];
|
|
}
|
|
|
|
entry {
|
|
background-color: inherit;
|
|
padding: 12px 3px;
|
|
}
|
|
|
|
prompt {
|
|
background-color: inherit;
|
|
padding: 12px;
|
|
}
|
|
|
|
listview {
|
|
lines: 8;
|
|
}
|
|
|
|
element {
|
|
children: [element-icon, element-text];
|
|
text-color: @blue;
|
|
}
|
|
|
|
element-icon {
|
|
padding: 10px 10px;
|
|
}
|
|
|
|
element-text {
|
|
padding: 10px 0;
|
|
text-color: inherit;
|
|
}
|
|
|
|
element-text selected {
|
|
text-color: @purple;
|
|
}
|