106 lines
2.7 KiB
Plaintext
106 lines
2.7 KiB
Plaintext
// Originally created by - https://github.com/gh0stzk
|
|
|
|
configuration {
|
|
modi: "drun";
|
|
show-icons: true;
|
|
drun-display-format: "{name}";
|
|
font: "JetBrainsMono NF Bold 15";
|
|
|
|
//hover-select: true;
|
|
//me-select-entry: "";
|
|
//me-accept-entry: "MousePrimary";
|
|
}
|
|
|
|
//----- Global Properties -----//
|
|
|
|
* {
|
|
main-bg: #1f2329;
|
|
main-fg: #b8bfe5;
|
|
select-bg: #3f5273;
|
|
select-fg: #1f2329;
|
|
}
|
|
|
|
//----- Main Window -----//
|
|
|
|
window {
|
|
enabled: true;
|
|
fullscreen: false;
|
|
width: 99%;
|
|
transparency: "real";
|
|
cursor: "default";
|
|
spacing: 0px;
|
|
padding: 0px;
|
|
border: 2px;
|
|
border-color: #465b80;
|
|
background-color: @main-bg;
|
|
}
|
|
|
|
//----- 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;
|
|
}
|