99 lines
2.8 KiB
Plaintext
99 lines
2.8 KiB
Plaintext
|
// Config //
|
||
|
configuration {
|
||
|
modi: "drun";
|
||
|
show-icons: false;
|
||
|
font: "JetBrainsMono Nerd Font 2";
|
||
|
}
|
||
|
|
||
|
@theme "~/.config/rofi/themes/theme.rasi"
|
||
|
|
||
|
|
||
|
// Main //
|
||
|
window {
|
||
|
height: 80%;
|
||
|
transparency: "real";
|
||
|
fullscreen: false;
|
||
|
enabled: true;
|
||
|
cursor: "default";
|
||
|
spacing: 0px;
|
||
|
padding: 0px;
|
||
|
border: 2px;
|
||
|
border-radius: 15px;
|
||
|
border-color: @main-br;
|
||
|
background-color: transparent;
|
||
|
}
|
||
|
mainbox {
|
||
|
enabled: true;
|
||
|
spacing: 0px;
|
||
|
orientation: vertical;
|
||
|
children: [ "inputbar" , "listbox" ];
|
||
|
background-color: transparent;
|
||
|
background-image: url("~/.config/swww/wall.blur", height);
|
||
|
}
|
||
|
|
||
|
|
||
|
// Inputs //
|
||
|
inputbar {
|
||
|
enabled: true;
|
||
|
padding: 7px;
|
||
|
children: [ "entry" ];
|
||
|
background-color: @main-bg;
|
||
|
}
|
||
|
entry {
|
||
|
enabled: true;
|
||
|
padding: 70px;
|
||
|
text-color: @main-fg;
|
||
|
background-color: @main-bg;
|
||
|
background-image: url("~/.config/swww/wall.blur", width);
|
||
|
}
|
||
|
|
||
|
|
||
|
// Lists //
|
||
|
listbox {
|
||
|
spacing: 0px;
|
||
|
padding: 6px;
|
||
|
children: [ "listview" ];
|
||
|
background-color: @main-bg;
|
||
|
}
|
||
|
listview {
|
||
|
enabled: true;
|
||
|
columns: 1;
|
||
|
cycle: true;
|
||
|
dynamic: true;
|
||
|
scrollbar: false;
|
||
|
layout: vertical;
|
||
|
reverse: false;
|
||
|
fixed-height: false;
|
||
|
fixed-columns: true;
|
||
|
cursor: "default";
|
||
|
background-color: transparent;
|
||
|
text-color: @main-fg;
|
||
|
}
|
||
|
|
||
|
|
||
|
// Elements //
|
||
|
element {
|
||
|
enabled: true;
|
||
|
spacing: 0px;
|
||
|
padding: 12px;
|
||
|
border-radius: 10px;
|
||
|
cursor: pointer;
|
||
|
background-color: transparent;
|
||
|
text-color: @main-fg;
|
||
|
}
|
||
|
@media(max-aspect-ratio: 1.8) {
|
||
|
element {
|
||
|
orientation: vertical;
|
||
|
}
|
||
|
}
|
||
|
element selected.normal {
|
||
|
background-color: @select-bg;
|
||
|
text-color: @select-fg;
|
||
|
}
|
||
|
element-text {
|
||
|
vertical-align: 0.0;
|
||
|
horizontal-align: 0.0;
|
||
|
cursor: inherit;
|
||
|
background-color: transparent;
|
||
|
text-color: inherit;
|
||
|
}
|