165 lines
5.1 KiB
Plaintext
Executable File
165 lines
5.1 KiB
Plaintext
Executable File
configuration {
|
|
show-icons: false;
|
|
}
|
|
|
|
* {
|
|
background: #32302FFF;
|
|
background-alt: #32302FFF;
|
|
foreground: #D4BE98;
|
|
selected: #FABD2FFF;
|
|
active: #B8BB26FF;
|
|
urgent: #FB4934FF;
|
|
}
|
|
|
|
* {
|
|
font: "DepartureMono Nerd Font 11";
|
|
}
|
|
|
|
window {
|
|
transparency: "real";
|
|
location: center;
|
|
anchor: center;
|
|
fullscreen: false;
|
|
width: 605px;
|
|
height: 300px;
|
|
x-offset: 0px;
|
|
y-offset: 0px;
|
|
|
|
enabled: true;
|
|
margin: 0px;
|
|
padding: 0px;
|
|
border: 0px solid;
|
|
border-radius: 4px;
|
|
border-color: @selected;
|
|
cursor: "default";
|
|
background-color: @background;
|
|
}
|
|
|
|
mainbox {
|
|
enabled: true;
|
|
spacing: 10px;
|
|
margin: 0px;
|
|
padding: 20px;
|
|
border: 0px solid;
|
|
border-radius: 0px;
|
|
border-color: @selected;
|
|
background-color: transparent;
|
|
background-image: url("~/.config/nushell/modules/nurofi/assets/solair.gif", width);
|
|
children: [ "inputbar", "message", "listview", dummy ];
|
|
}
|
|
|
|
inputbar {
|
|
enabled: true;
|
|
spacing: 10px;
|
|
margin: 0px;
|
|
padding: 0px;
|
|
border: 0px;
|
|
border-radius: 0px;
|
|
border-color: @selected;
|
|
background-color: transparent;
|
|
text-color: @foreground;
|
|
children: [ "textbox-prompt-colon", dummy, "prompt"];
|
|
}
|
|
|
|
dummy {
|
|
background-color: transparent;
|
|
}
|
|
|
|
textbox-prompt-colon {
|
|
enabled: true;
|
|
expand: false;
|
|
str: "System";
|
|
padding: 10px 14px;
|
|
border-radius: 4px;
|
|
background-color: @urgent;
|
|
text-color: @background;
|
|
}
|
|
prompt {
|
|
enabled: true;
|
|
padding: 10px;
|
|
border-radius: 4px;
|
|
background-color: @active;
|
|
text-color: @background;
|
|
}
|
|
|
|
/*****----- Message -----*****/
|
|
message {
|
|
enabled: true;
|
|
margin: 0px;
|
|
padding: 10px;
|
|
border: 0px solid;
|
|
border-radius: 4px;
|
|
border-color: @selected;
|
|
background-color: @background-alt;
|
|
text-color: @foreground;
|
|
}
|
|
textbox {
|
|
background-color: inherit;
|
|
text-color: inherit;
|
|
vertical-align: 0.5;
|
|
horizontal-align: 0.5;
|
|
placeholder-color: @foreground;
|
|
blink: true;
|
|
markup: true;
|
|
}
|
|
error-message {
|
|
padding: 10px;
|
|
border: 0px solid;
|
|
border-radius: 0px;
|
|
border-color: @selected;
|
|
background-color: @background;
|
|
text-color: @foreground;
|
|
}
|
|
|
|
/*****----- Listview -----*****/
|
|
listview {
|
|
enabled: true;
|
|
columns: 5;
|
|
lines: 1;
|
|
cycle: true;
|
|
dynamic: true;
|
|
scrollbar: false;
|
|
layout: vertical;
|
|
reverse: false;
|
|
fixed-height: true;
|
|
fixed-columns: true;
|
|
|
|
spacing: 10px;
|
|
margin: 0px;
|
|
padding: 0px;
|
|
border: 0px solid;
|
|
border-radius: 0px;
|
|
border-color: @selected;
|
|
background-color: transparent;
|
|
text-color: @foreground;
|
|
cursor: "default";
|
|
}
|
|
|
|
/*****----- Elements -----*****/
|
|
element {
|
|
enabled: true;
|
|
spacing: 0px;
|
|
margin: 0px;
|
|
padding: 10px;
|
|
border: 0px solid;
|
|
border-radius: 4px;
|
|
border-color: @selected;
|
|
background-color: @background-alt;
|
|
text-color: @foreground;
|
|
cursor: pointer;
|
|
}
|
|
element-text {
|
|
background-color: transparent;
|
|
text-color: inherit;
|
|
cursor: inherit;
|
|
vertical-align: 0.5;
|
|
horizontal-align: 0.5;
|
|
}
|
|
element selected.normal {
|
|
border: 0px 2px 0px 2px;
|
|
border-radius: 4px;
|
|
background-color: var(selected);
|
|
text-color: var(background);
|
|
}
|
|
|