175 lines
5.3 KiB
Plaintext
175 lines
5.3 KiB
Plaintext
|
/*****----- Configuration -----*****/
|
||
|
configuration {
|
||
|
modi: "drun,run";
|
||
|
show-icons: true;
|
||
|
drun-display-format: "{name}";
|
||
|
window-format: "{w} · {c} · {t}";
|
||
|
}
|
||
|
|
||
|
/*****----- Global Properties -----*****/
|
||
|
* {
|
||
|
font: "Montsserat Medium 10";
|
||
|
/*****-----background: #202020;-----*****/
|
||
|
background: rgba(32, 32, 32, 0.7);
|
||
|
background-alt: #424242;
|
||
|
foreground: #FFFFFF;
|
||
|
selected: #191919;
|
||
|
active: #a6e3a1;
|
||
|
urgent: #a6e3a1;
|
||
|
}
|
||
|
|
||
|
/*****----- Main Window -----*****/
|
||
|
window {
|
||
|
/* properties for window widget */
|
||
|
transparency: "real";
|
||
|
location: center;
|
||
|
anchor: center;
|
||
|
fullscreen: false;
|
||
|
width: 1000px;
|
||
|
x-offset: 0px;
|
||
|
y-offset: 0px;
|
||
|
|
||
|
/* properties for all widgets */
|
||
|
enabled: true;
|
||
|
border-radius: 12px;
|
||
|
cursor: "default";
|
||
|
background-color: @background;
|
||
|
}
|
||
|
|
||
|
/*****----- Main Box -----*****/
|
||
|
mainbox {
|
||
|
enabled: true;
|
||
|
spacing: 0px;
|
||
|
background-color: transparent;
|
||
|
orientation: horizontal;
|
||
|
children: [ "imagebox", "listbox" ];
|
||
|
}
|
||
|
|
||
|
imagebox {
|
||
|
padding: 20px;
|
||
|
background-color: transparent;
|
||
|
background-image: url("~/.config/rofi/bg.jpg", height);
|
||
|
orientation: vertical;
|
||
|
children: [ "inputbar" ];
|
||
|
}
|
||
|
|
||
|
listbox {
|
||
|
spacing: 20px;
|
||
|
padding: 20px;
|
||
|
background-color: transparent;
|
||
|
orientation: vertical;
|
||
|
children: [ "message", "listview" ];
|
||
|
}
|
||
|
|
||
|
/*****----- Inputbar -----*****/
|
||
|
inputbar {
|
||
|
enabled: true;
|
||
|
spacing: 10px;
|
||
|
padding: 15px;
|
||
|
border-radius: 10px;
|
||
|
background-color: @background-alt;
|
||
|
text-color: @foreground;
|
||
|
children: [ "textbox-prompt-colon", "entry" ];
|
||
|
}
|
||
|
textbox-prompt-colon {
|
||
|
enabled: true;
|
||
|
expand: false;
|
||
|
str: "";
|
||
|
background-color: inherit;
|
||
|
text-color: inherit;
|
||
|
}
|
||
|
entry {
|
||
|
enabled: true;
|
||
|
background-color: inherit;
|
||
|
text-color: inherit;
|
||
|
cursor: text;
|
||
|
placeholder: "Search";
|
||
|
placeholder-color: inherit;
|
||
|
}
|
||
|
|
||
|
/*****----- Listview -----*****/
|
||
|
listview {
|
||
|
enabled: true;
|
||
|
columns: 1;
|
||
|
lines: 8;
|
||
|
cycle: true;
|
||
|
dynamic: true;
|
||
|
scrollbar: false;
|
||
|
layout: vertical;
|
||
|
reverse: false;
|
||
|
fixed-height: true;
|
||
|
fixed-columns: true;
|
||
|
|
||
|
spacing: 10px;
|
||
|
background-color: transparent;
|
||
|
text-color: @foreground;
|
||
|
cursor: "default";
|
||
|
}
|
||
|
|
||
|
/*****----- Elements -----*****/
|
||
|
element {
|
||
|
enabled: true;
|
||
|
spacing: 15px;
|
||
|
padding: 8px;
|
||
|
border-radius: 10px;
|
||
|
background-color: transparent;
|
||
|
text-color: @foreground;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
element normal.normal {
|
||
|
background-color: inherit;
|
||
|
text-color: inherit;
|
||
|
}
|
||
|
element normal.urgent {
|
||
|
background-color: @urgent;
|
||
|
text-color: @foreground;
|
||
|
}
|
||
|
element normal.active {
|
||
|
background-color: @active;
|
||
|
text-color: @foreground;
|
||
|
}
|
||
|
element selected.normal {
|
||
|
background-color: @selected;
|
||
|
text-color: @foreground;
|
||
|
}
|
||
|
element selected.urgent {
|
||
|
background-color: @urgent;
|
||
|
text-color: @foreground;
|
||
|
}
|
||
|
element selected.active {
|
||
|
background-color: @urgent;
|
||
|
text-color: @foreground;
|
||
|
}
|
||
|
element-icon {
|
||
|
background-color: transparent;
|
||
|
text-color: inherit;
|
||
|
size: 32px;
|
||
|
cursor: inherit;
|
||
|
}
|
||
|
element-text {
|
||
|
background-color: transparent;
|
||
|
text-color: inherit;
|
||
|
cursor: inherit;
|
||
|
vertical-align: 0.5;
|
||
|
horizontal-align: 0.0;
|
||
|
}
|
||
|
|
||
|
/*****----- Message -----*****/
|
||
|
message {
|
||
|
background-color: transparent;
|
||
|
}
|
||
|
textbox {
|
||
|
padding: 15px;
|
||
|
border-radius: 10px;
|
||
|
background-color: @background-alt;
|
||
|
text-color: @foreground;
|
||
|
vertical-align: 0.5;
|
||
|
horizontal-align: 0.0;
|
||
|
}
|
||
|
error-message {
|
||
|
padding: 15px;
|
||
|
border-radius: 20px;
|
||
|
background-color: @background;
|
||
|
text-color: @foreground;
|
||
|
}
|