Update config.rasi

This commit is contained in:
FURK4NGG
2026-01-13 23:10:31 +03:00
committed by GitHub
parent 5763910f3a
commit 4a23830adf
+23 -16
View File
@@ -15,21 +15,22 @@ window {
/* properties for all widgets */ /* properties for all widgets */
enabled: true; enabled: true;
margin: 300px 500px; margin: 0px 0px;
padding: 0px; padding: 0px;
border-color: transparent; border-color: transparent;
border-radius: 15px; border-radius: 0px;
cursor: "default"; cursor: "default";
background-color: transparent; background-color: @blur;
} }
/*****----- Main Box -----*****/ /*****----- Main Box -----*****/
mainbox { mainbox {
enabled: true; enabled: true;
spacing: 10px; spacing: 10px;
margin: 0px; margin: 250px 420px;
padding: 30px; padding: 30px;
background-color: transparent; background-color: transparent;
border-radius: 15px;
children: [ "inputbar", "message", "listview"]; children: [ "inputbar", "message", "listview"];
} }
@@ -39,8 +40,8 @@ inputbar {
spacing: 10px; spacing: 10px;
margin: 0px; margin: 0px;
padding: 10px; padding: 10px;
border-radius: 10px; border-radius: 0px;
//background-color: @background-alt; //background-color: @background-alt;
text-color: @foreground; text-color: @foreground;
children: [ "textbox-prompt-colon", "entry" ]; children: [ "textbox-prompt-colon", "entry" ];
} }
@@ -71,7 +72,8 @@ entry {
/*****----- Listview -----*****/ /*****----- Listview -----*****/
listview { listview {
enabled: true; enabled: true;
columns: 2; padding: 25px 0 0;
columns: 3;
lines: 7; lines: 7;
cycle: true; cycle: true;
dynamic: true; dynamic: true;
@@ -81,7 +83,7 @@ listview {
fixed-height: true; fixed-height: true;
fixed-columns: true; fixed-columns: true;
spacing: 5px; spacing: 12px;
cursor: "default"; cursor: "default";
} }
scrollbar { scrollbar {
@@ -94,10 +96,10 @@ scrollbar {
/*****----- Elements -----*****/ /*****----- Elements -----*****/
element { element {
enabled: true; enabled: true;
spacing: 10px; spacing: 13px;
margin: 0px; margin: 0px;
padding: 6px; padding: 6px 6px 6px 10px;
border-radius: 0px; border-radius: 11px;
text-color: @foreground; text-color: @foreground;
cursor: pointer; cursor: pointer;
} }
@@ -107,17 +109,22 @@ element alternate.normal {
} }
element normal.urgent, element normal.urgent,
element alternate.urgent, element alternate.urgent,
element selected.active { element selected.active,
//text-color: var(foreground); element normal.urgent element-text,
element alternate.urgent element-text,
element selected element-text,
element selected.active element-text{
text-color: @purple;
} }
element selected.normal { element selected.normal {
background-color: var(background); background-color: @purple;
text-color: #fff
} }
element-icon { element-icon {
background-color: transparent; background-color: transparent;
text-color: inherit; text-color: inherit;
size: 24px; size: 25px;
cursor: inherit; cursor: inherit;
} }
element-text { element-text {
@@ -150,7 +157,7 @@ textbox {
} }
error-message { error-message {
padding: 30px; padding: 30px;
background-color: @background; background-color: @purple;
text-color: @foreground; text-color: @foreground;
} }
/*@theme "/usr/share/rofi/themes/DarkBlue.rasi"*/ /*@theme "/usr/share/rofi/themes/DarkBlue.rasi"*/