Improve The HELL Out Of Rofi

This commit is contained in:
Tyler Kelley 2024-02-08 01:25:40 -06:00
parent 5e80863053
commit cc596232e1

View File

@ -12,38 +12,42 @@ in {
} }
configuration { configuration {
modi: "run,filebrowser,drun";
show-icons: true; show-icons: true;
icon-theme: "Papirus"; icon-theme: "Papirus";
location: 0; location: 0;
font: "Ubuntu 12"; font: "JetBrains Nerd Font 16";
display-drun: "Launch:"; drun-display-format: "{icon} {name}";
display-drun: " Apps ";
display-run: " Run ";
display-filebrowser: " File ";
} }
window { window {
width: 35%; width: 45%;
transparency: "real"; transparency: "real";
orientation: vertical; orientation: vertical;
border-color: #${palette.base0B}; border: 2px ;
border-color: #${palette.base0F};
border-radius: 10px; border-radius: 10px;
} }
mainbox { mainbox {
children: [inputbar, listview]; children: [ inputbar, listview, mode-switcher ];
} }
// ELEMENT // ELEMENT
// ----------------------------------- // -----------------------------------
element { element {
padding: 4 12; padding: 8 14;
text-color: #${palette.base05}; text-color: #${palette.base05};
border-radius: 5px; border-radius: 5px;
} }
element selected { element selected {
text-color: #${palette.base01}; text-color: #${palette.base01};
background-color: #${palette.base0B}; background-color: #${palette.base0C};
} }
element-text { element-text {
@ -52,7 +56,7 @@ in {
} }
element-icon { element-icon {
size: 16 px; size: 24 px;
background-color: inherit; background-color: inherit;
padding: 0 6 0 0; padding: 0 6 0 0;
alignment: vertical; alignment: vertical;
@ -88,5 +92,40 @@ in {
padding: 10 6 0 10; padding: 10 6 0 10;
margin: 0 -2 0 0; margin: 0 -2 0 0;
} }
// Mode Switcher
//------------------------------------------------
mode-switcher {
border-color: #${palette.base0F};
spacing: 0;
}
button {
padding: 10px;
background-color: @bg;
text-color: #${palette.base01};
vertical-align: 0.5;
horizontal-align: 0.5;
}
button selected {
background-color: @bg;
text-color: #${palette.base0F};
}
message {
background-color: @bg;
margin: 2px;
padding: 2px;
border-radius: 5px;
}
textbox {
padding: 6px;
margin: 20px 0px 0px 20px;
text-color: #${palette.base0F};
background-color: @bg;
}
''; '';
} }