Customize Rofi config (Launcher, PowerMenu)

This commit is contained in:
ayushDumasia 2025-03-07 08:22:06 +05:30
parent f488d56e4e
commit 20d43f9706
24 changed files with 138 additions and 179 deletions

72
rofi/powermenu/confirmation.rasi Normal file → Executable file
View file

@ -5,11 +5,12 @@ configuration {
/*****----- Global Properties -----*****/
* {
font: "JetBrainsMono Nerd Font Mono Bold 12";
background: #11111b;
selected: #cba6f7;
active: #716251;
urgent: #934A1C;
font: "JetBrainsMono Nerd Font Mono 12";
background: #11111b;
foreground: #cdd6f4;
selected: #cba6f7;
active: #f5e0dc;
urgent: #f38ba8;
}
/*
@ -22,13 +23,13 @@ window {
location: center;
anchor: center;
fullscreen: false;
width: 350px;
width: 200px;
x-offset: 0px;
y-offset: 0px;
padding: 0px;
border: 0px solid;
border-radius: 8px;
border-radius: 4px;
border-color: @selected;
cursor: "default";
background-color: @background;
@ -44,14 +45,14 @@ mainbox {
border-radius: 0px;
border-color: @selected;
background-color: transparent;
children: [ "message", "listview" ];
children: [ "listview" ];
}
/*****----- Listview -----*****/
listview {
enabled: true;
columns: 2;
lines: 1;
columns: 1;
lines: 2;
cycle: true;
dynamic: true;
scrollbar: false;
@ -59,9 +60,9 @@ listview {
reverse: false;
fixed-height: true;
fixed-columns: true;
spacing: 16px;
padding: 32px;
padding: 16px;
margin: 0px;
background-color: transparent;
cursor: "default";
@ -69,36 +70,23 @@ listview {
/*****----- Elements -----*****/
element {
enabled: true;
padding: 17px;
border-radius: 16px;
background-color: #585b70;
text-color: #eff1f5;
cursor: pointer;
}
element-text {
font: "Font Awesome 5 Free Bold 24";
background-color: transparent;
text-color: inherit;
cursor: inherit;
vertical-align: 0.5;
horizontal-align: 0.5;
}
element selected.normal {
background-color: #8839ef;
enabled: true;
padding: 10px;
border-radius: 4px;
background-color: #313244;
cursor: pointer;
}
/*****----- Message -----*****/
message {
enabled: true;
margin: 0px 25px;
padding: 10px 20px;
border-radius: 0% 0% 100% 100%;
background-color: #f5c2e7;
}
textbox {
background-color: transparent;
text-color: #313244;
vertical-align: 0.5;
horizontal-align: 0.5;
element-text {
font: "JetBrainsMono Nerd Font Mono 12";
background-color: transparent;
text-color: inherit;
cursor: inherit;
vertical-align: 0.5;
horizontal-align: 0.5; /* Left align */
}
element selected.normal {
background-color: #cba6f7;
text-color: #11111b;
}