2024-10-21 22:35:37 +05:30
|
|
|
/*****----- Configuration -----*****/
|
|
|
|
configuration {
|
|
|
|
modi: "drun,window";
|
|
|
|
show-icons: true;
|
|
|
|
display-drun: "";
|
|
|
|
display-run: "";
|
|
|
|
display-filebrowser: "";
|
|
|
|
display-window: "";
|
|
|
|
drun-display-format: "{name}";
|
|
|
|
window-format: "{w} {c}";
|
|
|
|
}
|
|
|
|
|
2025-06-08 09:21:45 +05:30
|
|
|
|
|
|
|
|
|
|
|
|
2024-10-21 22:35:37 +05:30
|
|
|
/*****----- Global Properties -----*****/
|
|
|
|
* {
|
|
|
|
font: "JetBrains Mono Nerd Font 10";
|
|
|
|
background: #11111b;
|
|
|
|
background-alt: #313244;
|
|
|
|
foreground: #eff1f5;
|
|
|
|
selected: #cba6f7;
|
|
|
|
active: #6E77FF;
|
|
|
|
urgent: #8E3596;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****----- Main Window -----*****/
|
|
|
|
window {
|
|
|
|
/* properties for window widget */
|
|
|
|
transparency: "real";
|
|
|
|
location: center;
|
|
|
|
anchor: center;
|
|
|
|
fullscreen: false;
|
2025-03-07 08:22:06 +05:30
|
|
|
width: 400px;
|
2024-10-21 22:35:37 +05:30
|
|
|
x-offset: 0px;
|
|
|
|
y-offset: 0px;
|
|
|
|
|
|
|
|
/* properties for all widgets */
|
|
|
|
enabled: true;
|
2025-03-07 08:22:06 +05:30
|
|
|
border-radius: 4px;
|
2024-10-21 22:35:37 +05:30
|
|
|
cursor: "default";
|
|
|
|
background-color: @background;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****----- Main Box -----*****/
|
|
|
|
mainbox {
|
|
|
|
enabled: true;
|
|
|
|
spacing: 0px;
|
|
|
|
background-color: transparent;
|
|
|
|
orientation: vertical;
|
|
|
|
children: [ "inputbar", "listbox" ];
|
|
|
|
}
|
|
|
|
|
|
|
|
listbox {
|
|
|
|
spacing: 0px;
|
|
|
|
padding: 0px;
|
|
|
|
background-color: transparent;
|
|
|
|
orientation: vertical;
|
|
|
|
children: [ "listview" ];
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****----- Inputbar -----*****/
|
|
|
|
inputbar {
|
|
|
|
enabled: true;
|
|
|
|
spacing: 8px;
|
2025-03-07 08:22:06 +05:30
|
|
|
padding: 16px 16px 0px 16px;
|
2024-10-21 22:35:37 +05:30
|
|
|
background-color: transparent;
|
|
|
|
text-color: @foreground;
|
|
|
|
orientation: horizontal;
|
2025-03-07 08:22:06 +05:30
|
|
|
children: [ "textbox-prompt-colon", "entry"];
|
2024-10-21 22:35:37 +05:30
|
|
|
}
|
|
|
|
textbox-prompt-colon {
|
|
|
|
enabled: true;
|
|
|
|
expand: false;
|
2025-03-07 08:22:06 +05:30
|
|
|
str: "Search";
|
2024-10-21 22:35:37 +05:30
|
|
|
padding: 12px 20px 12px 15px;
|
2025-03-07 08:22:06 +05:30
|
|
|
border-radius: 4px;
|
2024-10-21 22:35:37 +05:30
|
|
|
background-color: #a6e3a1;
|
|
|
|
text-color: @background;
|
|
|
|
}
|
|
|
|
entry {
|
|
|
|
enabled: true;
|
|
|
|
expand: false;
|
|
|
|
width: 200px;
|
|
|
|
padding: 12px 16px 8px 16px;
|
2025-03-07 08:22:06 +05:30
|
|
|
border-radius: 4px;
|
|
|
|
background-color: @background;
|
2024-10-21 22:35:37 +05:30
|
|
|
text-color: inherit;
|
|
|
|
cursor: text;
|
2025-02-23 00:38:43 +05:30
|
|
|
placeholder-color: inherit;
|
2024-10-21 22:35:37 +05:30
|
|
|
}
|
|
|
|
dummy {
|
|
|
|
expand: true;
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****----- Mode Switcher -----*****/
|
|
|
|
mode-switcher{
|
|
|
|
enabled: true;
|
|
|
|
spacing: 8px;
|
|
|
|
background-color: transparent;
|
|
|
|
text-color: @foreground;
|
|
|
|
}
|
|
|
|
button {
|
|
|
|
padding: 12px 22px 12px 16px;
|
2025-03-07 08:22:06 +05:30
|
|
|
border-radius: 4px;
|
|
|
|
background-color: @background;
|
2024-10-21 22:35:37 +05:30
|
|
|
text-color: inherit;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
button selected {
|
|
|
|
background-color: @selected;
|
|
|
|
text-color: @background;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****----- Listview -----*****/
|
|
|
|
listview {
|
|
|
|
padding : 8px;
|
|
|
|
enabled: true;
|
|
|
|
columns: 1;
|
|
|
|
lines: 5;
|
|
|
|
cycle: true;
|
|
|
|
dynamic: true;
|
|
|
|
scrollbar: false;
|
|
|
|
layout: vertical;
|
|
|
|
reverse: false;
|
|
|
|
fixed-height: true;
|
|
|
|
fixed-columns: true;
|
2025-02-23 00:38:43 +05:30
|
|
|
|
2024-10-21 22:35:37 +05:30
|
|
|
spacing: 8px;
|
2025-03-07 08:22:06 +05:30
|
|
|
margin: 16px 12px;
|
|
|
|
border-radius: 4px;
|
2024-10-21 22:35:37 +05:30
|
|
|
background-color: #1e1e2e;
|
|
|
|
text-color: @foreground;
|
|
|
|
cursor: "default";
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****----- Elements -----*****/
|
|
|
|
element {
|
|
|
|
enabled: true;
|
|
|
|
spacing: 0px;
|
|
|
|
padding: 8px;
|
2025-03-07 08:22:06 +05:30
|
|
|
border-radius: 4px;
|
2024-10-21 22:35:37 +05:30
|
|
|
background-color: transparent;
|
|
|
|
text-color: @foreground;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
element selected.normal {
|
|
|
|
background-color: @selected;
|
|
|
|
text-color: @background;
|
|
|
|
}
|
|
|
|
element-icon {
|
|
|
|
background-color: transparent;
|
|
|
|
text-color: inherit;
|
|
|
|
size: 32px;
|
|
|
|
cursor: inherit;
|
|
|
|
}
|
|
|
|
element-text {
|
|
|
|
padding: 0px 16px;
|
|
|
|
background-color: transparent;
|
|
|
|
text-color: inherit;
|
|
|
|
cursor: inherit;
|
|
|
|
vertical-align: 0.5;
|
|
|
|
horizontal-align: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****----- Message -----*****/
|
|
|
|
message {
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
textbox {
|
|
|
|
padding: 0px;
|
|
|
|
border-radius: 0px;
|
2025-03-07 08:22:06 +05:30
|
|
|
background-color: @background;
|
2024-10-21 22:35:37 +05:30
|
|
|
text-color: @foreground;
|
|
|
|
vertical-align: 0.5;
|
|
|
|
horizontal-align: 0.5;
|
|
|
|
}
|
|
|
|
error-message {
|
|
|
|
padding: 0px;
|
|
|
|
border-radius: 0px;
|
|
|
|
background-color: @background;
|
|
|
|
text-color: @foreground;
|
|
|
|
}
|