Skip to content

Instantly share code, notes, and snippets.

@Cocosushi6
Last active July 29, 2022 19:46
Show Gist options
  • Select an option

  • Save Cocosushi6/3a48fc5934854a1f314fd56e548c9db3 to your computer and use it in GitHub Desktop.

Select an option

Save Cocosushi6/3a48fc5934854a1f314fd56e548c9db3 to your computer and use it in GitHub Desktop.
* {
normal-background: #222222;
urgent-background: #222222;
active-background: #222222;
selected-normal-background: #005577;
selected-urgent-background: @selected-normal-background;
selected-active-background: @selected-normal-background;
alternate-normal-background: #222222;
alternate-urgent-background: #222222;
alternate-active-background: #222222;
foreground: #e5e5e5;
normal-foreground: @foreground;
urgent-foreground: @foreground;
active-foreground: @foreground;
selected-normal-foreground: @foreground;
selected-urgent-foreground: @foreground;
selected-active-foreground: @foreground;
alternate-normal-foreground: @foreground;
alternate-urgent-foreground: @foreground;
alternate-active-foreground: @foreground;
}
window {
background-color: #222222;
border-color: #222222;
width: 100%;
location: northwest;
font: "mono 10";
border: 0px;
border-radius: 0;
margin: 0px;
padding: 0px;
}
mainbox {
background-color: #222222;
border-color: #222222;
children: [inputbar, listview];
orientation: horizontal;
margin: 0px;
padding: 0px;
border: 0px;
border-radius: 0;
}
inputbar {
width: 30%;
spacing: 0px;
children: [entry];
}
listview {
width: 70%;
lines: 1;
margin: 0px;
padding: 1px;
scrollbar: false;
fixed-height: true;
columns: 9;
fixed-columns: true;
border: 0px;
}
prompt {
enabled: false;
}
entry {
text-color: @foreground;
placeholder: "";
margin: 0px;
}
num-filtered-rows {
enabled: false;
}
num-rows {
enabled: false;
}
element {
fixed-width: true;
border: 0;
padding: 1px ;
}
element-text {
background-color: inherit;
text-color: inherit;
highlight: none;
}
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;
}
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: @alternate-normal-background;
text-color: @alternate-normal-foreground;
}
element.alternate.urgent {
background-color: @alternate-urgent-background;
text-color: @alternate-urgent-foreground;
}
element.alternate.active {
background-color: @alternate-active-background;
text-color: @alternate-active-foreground;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment