.dotfiles/.config/rofi/config.rasi

149 lines
2.4 KiB
Plaintext
Raw Normal View History

configuration {
modi: "drun,run";
width: 450;
2020-06-03 09:38:27 +02:00
font: "JetBrains Mono 9";
location: 2;
yoffset: 60;
xoffset: 0;
show-icons: false;
}
2020-05-10 18:49:56 +02:00
* {
maincolor: ${SBG};
urgentcolor: ${FG};
prompt-background: ${ASBG};
scrollbar-handle: ${ASEL};
foreground: ${FG};
highlight: bold ${C12};
2020-05-22 15:51:19 +02:00
background: @maincolor;
background-color: @maincolor;
blackselect: ${SEL};
2020-05-10 18:49:56 +02:00
}
window {
2020-05-22 15:51:19 +02:00
background-color: @background;
border: 0;
border-color: @maincolor;
padding: 0;
2020-05-10 18:49:56 +02:00
}
mainbox {
2020-05-22 15:51:19 +02:00
background-color: @background;
spacing: 0px;
children: [inputbar, message, listview];
2020-05-10 18:49:56 +02:00
}
message {
2020-05-22 15:51:19 +02:00
padding: 6px 10px;
background-color: @background;
2020-05-10 18:49:56 +02:00
}
textbox {
2020-05-22 15:51:19 +02:00
text-color: @urgentcolor;
padding: 10px 10px;
background-color: @background;
2020-05-10 18:49:56 +02:00
}
listview {
2020-05-22 15:51:19 +02:00
columns: 1;
fixed-height: false;
scrollbar: true;
spacing: 0px;
padding: 1px 0px 0px 0px;
margin: 0px 0px 1px 0px;
background: @background;
2020-05-10 18:49:56 +02:00
}
element {
2020-05-22 15:51:19 +02:00
padding: 4px 15px;
2020-05-10 18:49:56 +02:00
}
element normal.normal {
2020-05-22 15:51:19 +02:00
padding: 0px 15px;
background-color: @background;
text-color: @urgentcolor;
2020-05-10 18:49:56 +02:00
}
element normal.urgent {
2020-05-22 15:51:19 +02:00
background-color: @background;
text-color: @urgentcolor;
2020-05-10 18:49:56 +02:00
}
element normal.active {
2020-05-22 15:51:19 +02:00
background-color: @background;
text-color: @maincolor;
2020-05-10 18:49:56 +02:00
}
element selected.normal {
2020-05-22 15:51:19 +02:00
background-color: @blackselect;
text-color: @foreground;
2020-05-10 18:49:56 +02:00
}
element selected.urgent {
2020-05-22 15:51:19 +02:00
background-color: @urgentcolor;
text-color: @background;
2020-05-10 18:49:56 +02:00
}
element selected.active {
2020-05-22 15:51:19 +02:00
background-color: @maincolor;
text-color: @background;
2020-05-10 18:49:56 +02:00
}
element alternate.normal {
2020-05-22 15:51:19 +02:00
background-color: @background;
text-color: @foreground;
2020-05-10 18:49:56 +02:00
}
element alternate.urgent {
2020-05-22 15:51:19 +02:00
background-color: @background;
text-color: @urgentcolor;
2020-05-10 18:49:56 +02:00
}
element alternate.active {
2020-05-22 15:51:19 +02:00
background-color: @background;
text-color: @maincolor;
2020-05-10 18:49:56 +02:00
}
scrollbar {
2020-05-22 15:51:19 +02:00
background-color: @prompt-background;
handle-color: @scrollbar-handle;
handle-width: 7px;
2020-05-10 18:49:56 +02:00
}
mode-switcher {
2020-05-22 15:51:19 +02:00
background-color: @background;
2020-05-10 18:49:56 +02:00
}
button {
2020-05-22 15:51:19 +02:00
background-color: @background;
text-color: @foreground;
2020-05-10 18:49:56 +02:00
}
button selected {
2020-05-22 15:51:19 +02:00
text-color: @maincolor;
2020-05-10 18:49:56 +02:00
}
inputbar {
2020-05-22 15:51:19 +02:00
background-color: @background;
spacing: 0px;
2020-05-10 18:49:56 +02:00
}
prompt {
2020-05-22 15:51:19 +02:00
padding: 8px 11px;
background-color: @prompt-background;
text-color: @foreground;
2020-05-10 18:49:56 +02:00
}
entry {
2020-05-22 15:51:19 +02:00
padding: 8px 10px;
background-color: @background;
text-color: @urgentcolor;
2020-05-10 18:49:56 +02:00
}
case-indicator {
2020-05-22 15:51:19 +02:00
padding: 6px 10px;
text-color: @maincolor;
background-color: @background;
2020-05-10 18:49:56 +02:00
}
/* vim:ft=css