mirror of
https://github.com/hydroxycarbamide/dotfiles.git
synced 2025-05-04 20:09:08 -04:00
114 lines
No EOL
2.7 KiB
Text
114 lines
No EOL
2.7 KiB
Text
configuration {
|
|
modi: "drun";
|
|
font: "Proxima Nova Bold 15";
|
|
show-icons: true;
|
|
icon-theme: "Reversal-black-dark";
|
|
display-drun: "";
|
|
drun-display-format: "{name}";
|
|
sidebar-mode: false;
|
|
}
|
|
|
|
@theme "/dev/null"
|
|
|
|
* {
|
|
bg: #181f21;
|
|
fg: #dadada;
|
|
fg-alt: #181f21;
|
|
button: #ef7d7d;
|
|
accent: #8ccf7e;
|
|
accent-alt: #e5c76b;
|
|
border: #67b0e8;
|
|
another-color: #c47fd5;
|
|
|
|
background-color: @bg;
|
|
text-color: @fg;
|
|
}
|
|
|
|
window {
|
|
transparency: "real";
|
|
border-radius: 15px;
|
|
width: 50%;
|
|
padding: 30px;
|
|
border: 4px;
|
|
border-color: @border;
|
|
}
|
|
|
|
prompt {
|
|
enabled: true;
|
|
horizontal-align: 0.5;
|
|
vertical-align: 0.5;
|
|
background-color: @bg;
|
|
border: 4px;
|
|
border-color: @accent;
|
|
border-radius: 15px;
|
|
font: "Material Design Icons Desktop Bold 17";
|
|
padding: 0 1% 0;
|
|
text-color: @button;
|
|
}
|
|
|
|
entry {
|
|
placeholder: "Search";
|
|
expand: true;
|
|
padding: 2%;
|
|
background-color: @bg;
|
|
placeholder-color: @another-color;
|
|
border: 4px;
|
|
border-color: @accent;
|
|
border-radius: 15px;
|
|
cursor: text;
|
|
text-color: @another-color;
|
|
}
|
|
|
|
inputbar {
|
|
children: [ prompt, entry ];
|
|
expand: false;
|
|
spacing: 1%;
|
|
text-color: @another-color;
|
|
}
|
|
|
|
listview {
|
|
columns: 4;
|
|
lines: 3;
|
|
cycle: false;
|
|
dynamic: true;
|
|
layout: vertical;
|
|
}
|
|
|
|
mainbox {
|
|
children: [ inputbar, listview ];
|
|
spacing: 2%;
|
|
padding: 2% 1% 2% 1%;
|
|
}
|
|
|
|
element {
|
|
orientation: vertical;
|
|
padding: 2% 0% 2% 0%;
|
|
}
|
|
|
|
element-icon {
|
|
size: 48px;
|
|
horizontal-align: 0.5;
|
|
}
|
|
|
|
element-text {
|
|
expand: true;
|
|
horizontal-align: 0.5;
|
|
vertical-align: 0.5;
|
|
margin: 0.5% 0.5% -0.5% 0.5%;
|
|
font: "Proxima Nova 15";
|
|
}
|
|
|
|
element selected {
|
|
background-color: @accent-alt;
|
|
text-color: @bg;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
element-text, element-icon {
|
|
background-color: inherit;
|
|
text-color: inherit;
|
|
}
|
|
|
|
listview, element, element selected, element-icon, element-text {
|
|
cursor: pointer;
|
|
} |