dotfiles/config/rofi/wallselector.rasi
2023-12-11 14:28:28 +00:00

106 lines
2.8 KiB
Plaintext

// Originally created by - https://github.com/gh0stzk
configuration {
modi: "drun";
show-icons: true;
drun-display-format: "{name}";
font: "JetBrainsMono NF Bold 11";
//hover-select: true;
//me-select-entry: "";
//me-accept-entry: "MousePrimary";
}
//----- Global Properties -----//
* {
main-bg: #1f2329E6;
main-fg: #b8bfe5;
select-bg: #3f5273;
select-fg: #1f2329;
}
//----- Main Window -----//
window {
enabled: true;
fullscreen: false;
width: 100%;
transparency: "real";
cursor: "default";
spacing: 0px;
padding: 0px;
border: 0px;
border-radius: 0px;
border-color: transparent;
background-color: transparent;
}
//----- Main Box -----//
mainbox {
enabled: true;
children: [ "listview" ];
background-color: @main-bg;
}
//----- Listview -----//
listview {
enabled: true;
columns: 6;
lines: 1;
spacing: 50px;
padding: 20px 30px;
cycle: true;
dynamic: false;
scrollbar: false;
layout: vertical;
reverse: true;
fixed-height: true;
fixed-columns: true;
cursor: "default";
background-color: transparent;
text-color: @main-fg;
}
//----- Elements -----//
element {
enabled: true;
orientation: horizontal;
spacing: 0px;
padding: 0px;
border-radius: 20px;
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-icon {
size: 33%;
cursor: inherit;
border-radius: 0px;
background-color: transparent;
text-color: inherit;
}
element-text {
vertical-align: 0.5;
horizontal-align: 0.5;
padding: 20px;
cursor: inherit;
background-color: transparent;
text-color: inherit;
}