Update config.rasi

This commit is contained in:
FURK4NGG
2026-01-14 00:01:51 +03:00
committed by GitHub
parent 059e19fd79
commit 4e594cd071
+19 -20
View File
@@ -26,20 +26,19 @@ window {
/*****----- Main Box -----*****/ /*****----- Main Box -----*****/
mainbox { mainbox {
enabled: true; enabled: true;
spacing: 10px; spacing: 1ch;
margin: 250px 420px; margin: 25ch 42ch;
padding: 30px; padding: 3ch;
background-color: transparent; background-color: transparent;
border-radius: 15px;
children: [ "inputbar", "message", "listview"]; children: [ "inputbar", "message", "listview"];
} }
/*****----- Inputbar -----*****/ /*****----- Inputbar -----*****/
inputbar { inputbar {
enabled: true; enabled: true;
spacing: 10px; spacing: 1ch;
margin: 0px; margin: 0px;
padding: 10px; padding: 1ch;
border-radius: 0px; border-radius: 0px;
//background-color: @background-alt; //background-color: @background-alt;
text-color: @foreground; text-color: @foreground;
@@ -72,7 +71,7 @@ entry {
/*****----- Listview -----*****/ /*****----- Listview -----*****/
listview { listview {
enabled: true; enabled: true;
padding: 25px 0 0; padding: 2.5ch 0 0;
columns: 3; columns: 3;
lines: 7; lines: 7;
cycle: true; cycle: true;
@@ -83,23 +82,23 @@ listview {
fixed-height: true; fixed-height: true;
fixed-columns: true; fixed-columns: true;
spacing: 12px; spacing: 1.2ch;
cursor: "default"; cursor: "default";
} }
scrollbar { scrollbar {
handle-width: 5px ; handle-width: 0.5ch;
//handle-color: trasnparent; //handle-color: trasnparent;
border-radius: 10px; border-radius: 1ch;
//background-color: transparent; //background-color: transparent;
} }
/*****----- Elements -----*****/ /*****----- Elements -----*****/
element { element {
enabled: true; enabled: true;
spacing: 13px; spacing: 1.9ch;
margin: 0px; margin: 0px;
padding: 6px 6px 6px 10px; padding: 0.8ch 0.8ch 0.8ch 1.2ch;
border-radius: 11px; border-radius: 1.3ch;
text-color: @foreground; text-color: @foreground;
cursor: pointer; cursor: pointer;
} }
@@ -124,7 +123,7 @@ element selected.normal {
element-icon { element-icon {
background-color: transparent; background-color: transparent;
text-color: inherit; text-color: inherit;
size: 25px; size: 2.7ch;
cursor: inherit; cursor: inherit;
} }
element-text { element-text {
@@ -132,15 +131,15 @@ element-text {
text-color: inherit; text-color: inherit;
highlight: inherit; highlight: inherit;
cursor: inherit; cursor: inherit;
vertical-align: 0.5; vertical-align: 0.5ch;
horizontal-align: 0.0; horizontal-align: 0.0ch;
} }
/*****----- Message -----*****/ /*****----- Message -----*****/
message { message {
enabled: true; enabled: true;
margin: 0px; margin: 0px;
padding: 10px; padding: 1ch;
border-radius: 0px; border-radius: 0px;
background-color: @background-alt; background-color: @background-alt;
text-color: @foreground; text-color: @foreground;
@@ -148,15 +147,15 @@ message {
textbox { textbox {
background-color: transparent; background-color: transparent;
text-color: @foreground; text-color: @foreground;
vertical-align: 0.5; vertical-align: 0.5ch;
horizontal-align: 0.0; horizontal-align: 0.0ch;
highlight: none; highlight: none;
placeholder-color: @foreground; placeholder-color: @foreground;
blink: true; blink: true;
markup: true; markup: true;
} }
error-message { error-message {
padding: 30px; padding: 3ch;
background-color: @purple; background-color: @purple;
text-color: @foreground; text-color: @foreground;
} }