121 lines
3.6 KiB
Plaintext
121 lines
3.6 KiB
Plaintext
configuration {
|
|
show-icons: false;
|
|
}
|
|
|
|
@import "../colors.rasi"
|
|
|
|
|
|
window {
|
|
transparency: "real";
|
|
location: north;
|
|
anchor: center;
|
|
fullscreen: false;
|
|
x-offset: 0px;
|
|
y-offset: -41px;
|
|
width: 100%;
|
|
|
|
|
|
border: none;
|
|
border-radius: 0;
|
|
border-color: transparent;
|
|
|
|
cursor: "default";
|
|
background-color: var(theme-bg-color);
|
|
}
|
|
|
|
mainbox {
|
|
enabled: true;
|
|
margin: 0px;
|
|
padding: 11px;
|
|
border: 0px solid;
|
|
border-radius: 0px;
|
|
border-color: transparent;
|
|
background-color: transparent;
|
|
children: ["inputbar" ];
|
|
}
|
|
|
|
|
|
inputbar {
|
|
enabled: true;
|
|
spacing: 16px;
|
|
margin: 0px;
|
|
padding: 0px;
|
|
background-color: transparent;
|
|
text-color: var(theme-text-color);
|
|
children: ["textbox-prompt-colon", "prompt", "listview"];
|
|
}
|
|
|
|
|
|
textbox-prompt-colon {
|
|
enabled: true;
|
|
expand: false;
|
|
str: "";
|
|
padding: 0 12px 0 10px;
|
|
border-radius: 100%;
|
|
background-color: var(theme-selected-bg-color);
|
|
text-color: @theme-selected-fg-color;
|
|
vertical-align: 0.5;
|
|
font: "JetBrainsMono Nerd Font 12";
|
|
}
|
|
prompt {
|
|
enabled: true;
|
|
padding: 0 12px;
|
|
border-radius: 100%;
|
|
background-color: var(theme-text-color);
|
|
text-color: var(theme-bg-color);
|
|
vertical-align: 0.5;
|
|
font: "JetBrainsMono Nerd Font 9";
|
|
}
|
|
|
|
dummy {
|
|
background-color: inherit;
|
|
}
|
|
|
|
|
|
listview {
|
|
enabled: true;
|
|
columns: 2;
|
|
lines: 5;
|
|
cycle: true;
|
|
dynamic: false;
|
|
scrollbar: false;
|
|
layout: horizontal;
|
|
reverse: false;
|
|
fixed-height: false;
|
|
fixed-columns: true;
|
|
vertical-align: 0.5;
|
|
horizontal-align: 0;
|
|
spacing: 15px;
|
|
background-color: transparent;
|
|
text-color: var(theme-text-color);
|
|
cursor: "default";
|
|
}
|
|
|
|
element {
|
|
enabled: true;
|
|
spacing: 0px;
|
|
margin: 0px;
|
|
|
|
border: 0px solid;
|
|
border-radius: 100%;
|
|
|
|
background-color: transparent;
|
|
|
|
cursor: "pointer";
|
|
}
|
|
element-text {
|
|
font: "JetBrainsMono Nerd Font 12";
|
|
background-color: transparent;
|
|
text-color: var(text);
|
|
cursor: inherit;
|
|
vertical-align: 0.5;
|
|
horizontal-align: 0;
|
|
padding: 0 12px;
|
|
horizontal-align: 0;
|
|
}
|
|
element selected.normal {
|
|
background-color: var(theme-selected-bg-color);
|
|
}
|
|
element-text selected.normal {
|
|
text-color: var(theme-bg-color);
|
|
} |