80 lines
2.4 KiB
Text
Executable file
80 lines
2.4 KiB
Text
Executable file
/*****----- Configuration -----*****/
|
|
configuration {
|
|
show-icons: false;
|
|
}
|
|
|
|
/*****----- Global Properties -----*****/
|
|
* {
|
|
font: "JetBrains Mono Nerd Font 12";
|
|
background: #11111b;
|
|
background-alt: #313244;
|
|
foreground: #eff1f5;
|
|
selected: #cba6f7;
|
|
active: #6E77FF;
|
|
urgent: #8E3596;
|
|
}
|
|
|
|
/*****----- Main Window -----*****/
|
|
window {
|
|
transparency: "real";
|
|
location: center;
|
|
anchor: center;
|
|
fullscreen: false;
|
|
width: 400px;
|
|
x-offset: 0px;
|
|
y-offset: 0px;
|
|
|
|
/* properties for all widgets */
|
|
enabled: true;
|
|
border-radius: 8px;
|
|
cursor: "default";
|
|
background-color: @background;
|
|
}
|
|
|
|
/*****----- Main Box -----*****/
|
|
mainbox {
|
|
enabled: true;
|
|
spacing: 0px;
|
|
background-color: transparent;
|
|
orientation: vertical;
|
|
children: [ "inputbar" ];
|
|
}
|
|
|
|
/*****----- Inputbar -----*****/
|
|
inputbar {
|
|
enabled: true;
|
|
spacing: 0px;
|
|
padding: 28px 24px 24px 24px;
|
|
background-color: transparent;
|
|
text-color: @foreground;
|
|
orientation: horizontal;
|
|
children: [ "textbox-prompt-colon", "dummy", "entry" ];
|
|
}
|
|
|
|
dummy {
|
|
background-color: transparent;
|
|
}
|
|
|
|
entry {
|
|
enabled: true;
|
|
expand: false;
|
|
width: 280px;
|
|
padding: 12px 16px 8px 16px;
|
|
border-radius: 8px;
|
|
background-color: @background-alt;
|
|
text-color: inherit;
|
|
cursor: text;
|
|
placeholder: "Search";
|
|
placeholder-color: inherit;
|
|
}
|
|
|
|
// icon
|
|
textbox-prompt-colon {
|
|
enabled: true;
|
|
expand: false;
|
|
str: "";
|
|
padding: 12px 24px 12px 14px;
|
|
border-radius: 100%;
|
|
background-color: #a6e3a1;
|
|
text-color: @background;
|
|
}
|