mine-hyprdots/rofi/wifi/enable.rasi
ayushDumasia d1bbbcbb15 Add rofi
2024-10-21 22:35:37 +05:30

110 lines
3.3 KiB
Text

/*****----- Configuration -----*****/
configuration {
show-icons: false;
}
/*****----- Global Properties -----*****/
* {
font: "JetBrains Mono Nerd Font 12";
background: #11111b;
background-alt: #313244;
foreground: #eff1f5;
selected: #cba6f7;
active: #6E77FF;
urgent: #8E3596;
}
/*****----- Main Window -----*****/
window {
transparency: "real";
location: center;
anchor: center;
fullscreen: false;
width: 320px;
x-offset: 0px;
y-offset: 0px;
/* properties for all widgets */
enabled: true;
border-radius: 8px;
cursor: "default";
background-color: @background;
}
/*****----- Main Box -----*****/
mainbox {
enabled: true;
spacing: 0px;
background-color: transparent;
orientation: horizontal;
children: [ "inputbar", "listview" ];
}
/*****----- Inputbar -----*****/
inputbar {
enabled: true;
spacing: 0px;
padding: 28px 0px 28px 24px;
background-color: transparent;
text-color: @foreground;
orientation: horizontal;
children: [ "textbox-prompt-colon" ];
}
textbox-prompt-colon {
enabled: true;
expand: false;
str: "";
padding: 12px 24px 12px 14px;
border-radius: 100%;
background-color: #a6e3a1;
text-color: @background;
}
/*****----- Listview -----*****/
listview {
enabled: true;
columns: 1;
lines: 1;
cycle: true;
dynamic: false;
scrollbar: false;
layout: vertical;
reverse: false;
spacing: 0px;
margin: 28px 24px;
border-radius: 8px;
background-color: #1e1e2e;
text-color: @foreground;
cursor: "default";
}
/*****----- Elements -----*****/
element {
enabled: true;
spacing: 0px;
padding: 12px 8px;
border-radius: 8px;
background-color: transparent;
text-color: @foreground;
cursor: pointer;
}
element selected.normal {
background-color: @selected;
text-color: @background;
}
element-icon {
background-color: transparent;
text-color: inherit;
size: 0px;
cursor: inherit;
}
element-text {
padding: 0px 16px;
background-color: transparent;
text-color: inherit;
cursor: inherit;
vertical-align: 0.5;
horizontal-align: 0;
}