149 lines
3.3 KiB
Plaintext
149 lines
3.3 KiB
Plaintext
/**
|
|
* User: deadguy
|
|
* Copyright: deadguy
|
|
*/
|
|
|
|
configuration {
|
|
display-drun: "Activate";
|
|
display-run: "Execute";
|
|
show-icons: true;
|
|
sidebar-mode: false;
|
|
}
|
|
|
|
* {
|
|
background-color: rgb(0, 0, 0, 0);
|
|
text-color: rgb(255, 255, 255);
|
|
selbg: rgb(255, 255, 255, 0.5);
|
|
urgbg: rgb(255, 255, 255);
|
|
actbg: rgb(255, 255, 255, 0.05);
|
|
winbg: rgb(255, 255, 255);
|
|
|
|
selected-normal-foreground: @winbg;
|
|
normal-foreground: @text-color;
|
|
selected-normal-background: @actbg;
|
|
normal-background: @background-color;
|
|
|
|
selected-urgent-foreground: @background-color;
|
|
urgent-foreground: @text-color;
|
|
selected-urgent-background: @urgbg;
|
|
urgent-background: @background-color;
|
|
|
|
selected-active-foreground: @winbg;
|
|
active-foreground: @text-color;
|
|
selected-active-background: @actbg;
|
|
active-background: @selbg;
|
|
|
|
line-margin: 2;
|
|
line-padding: 2;
|
|
separator-style: "none";
|
|
hide-scrollbar: "true";
|
|
margin: 0px;
|
|
padding: 0px;
|
|
font: "FiraCode Nerd Font Mono Medium 10";
|
|
}
|
|
|
|
window {
|
|
location: west;
|
|
anchor: west;
|
|
x-offset: 0px;
|
|
height: 100%;
|
|
width: 30%;
|
|
padding: 0%;
|
|
orientation: horizontal;
|
|
children: [mainbox];
|
|
background-color: rgb(20, 20, 20, 0.9);
|
|
}
|
|
|
|
mainbox {
|
|
spacing: 0em;
|
|
padding: 0px;
|
|
width: 100%;
|
|
children: [ inputbar, listview ];
|
|
expand: true;
|
|
}
|
|
|
|
button { padding: 5px 2px; }
|
|
|
|
button selected {
|
|
background-color: @active-background;
|
|
text-color: @background-color;
|
|
}
|
|
|
|
inputbar {
|
|
children: [ entry ];
|
|
}
|
|
|
|
textbox-prompt-colon {
|
|
text-color: inherit;
|
|
expand: false;
|
|
margin: 0 0.3em 0em 0em;
|
|
}
|
|
|
|
listview {
|
|
spacing: 0em;
|
|
dynamic: false;
|
|
cycle: false;
|
|
}
|
|
|
|
element {
|
|
padding: 16px;
|
|
border: 0 0 0 0 solid;
|
|
}
|
|
|
|
entry {
|
|
expand: true;
|
|
text-color: @normal-foreground;
|
|
background-color: rgb(0, 0, 0, 0);
|
|
vertical-align: 1;
|
|
padding: 12px;
|
|
font: "FiraCode Nerd Font Mono Bold 18";
|
|
}
|
|
|
|
element normal.normal {
|
|
background-color: @normal-background;
|
|
text-color: @normal-foreground;
|
|
}
|
|
|
|
element normal.urgent {
|
|
background-color: @urgent-background;
|
|
text-color: @urgent-foreground;
|
|
}
|
|
|
|
element normal.active {
|
|
background-color: @active-background;
|
|
text-color: @active-foreground;
|
|
}
|
|
|
|
element selected.normal {
|
|
background-color: @selected-normal-background;
|
|
text-color: @selected-normal-foreground;
|
|
padding: 16px;
|
|
border: 0 0 0 0 solid;
|
|
border-color: @active-background;
|
|
}
|
|
|
|
element selected.urgent {
|
|
background-color: @selected-urgent-background;
|
|
text-color: @selected-urgent-foreground;
|
|
}
|
|
|
|
element selected.active {
|
|
background-color: @selected-active-background;
|
|
text-color: @selected-active-foreground;
|
|
}
|
|
|
|
element alternate.normal {
|
|
background-color: @normal-background;
|
|
text-color: @normal-foreground;
|
|
}
|
|
|
|
element alternate.urgent {
|
|
background-color: @urgent-background;
|
|
text-color: @urgent-foreground;
|
|
}
|
|
|
|
element alternate.active {
|
|
background-color: @active-background;
|
|
text-color: @active-foreground;
|
|
}
|