Reorganized

This commit is contained in:
Tyler Mayoff 2025-02-15 10:55:48 -05:00
parent 4cd0255ba4
commit e42e996e75
21 changed files with 2397 additions and 965 deletions

View file

@ -0,0 +1,79 @@
/* Bluetooth menu */
configuration {
font: "JetBrainsMono Nerd Font 8";
}
@theme "~/.config/rofi/theme.rasi"
/* Window */
window {
location: north;
anchor: south;
y-offset: 3px;
width: 240px;
border: 2px;
border-radius: 10px;
border-color: @main-br;
background-color: @main-bg;
children: [ mainbox ];
}
mainbox {
spacing: 0;
background-color: inherit;
text-color: @main-fg;
children: [ inputbar, listview ];
}
/* Input */
inputbar {
margin: 6px;
border-radius: 6px;
spacing: inherit;
background-color: @input-bg;
text-color: inherit;
children: [ prompt, entry ];
}
prompt {
padding: 6px 6px 6px 12px;
background-color: inherit;
text-color: inherit;
}
entry {
placeholder: "Search";
padding: 6px 0;
cursor: text;
background-color: inherit;
text-color: inherit;
}
/* List */
listview {
lines: 6;
cycle: false;
padding: 0 6px 6px 6px;
background-color: inherit;
}
element {
padding: 6px;
cursor: pointer;
background-color: inherit;
text-color: @main-fg;
}
element selected active,
element selected normal {
border-radius: 6px;
background-color: @select-bg;
text-color: @select-fg;
}
element-text {
padding: 0 6px;
cursor: inherit;
background-color: inherit;
text-color: inherit;
}

View file

@ -0,0 +1,54 @@
/* Power menu */
configuration {
font: "JetBrainsMono Nerd Font 8";
}
@theme "~/.config/rofi/theme.rasi"
/* Window */
window {
location: northeast;
anchor: north;
x-offset: -3px;
y-offset: 3px;
width: 150px;
border: 2px;
border-radius: 10px;
border-color: @main-br;
background-color: @main-bg;
children: [ mainbox ];
}
mainbox {
background-color: inherit;
text-color: @main-fg;
children: [ listview ];
}
/* List */
listview {
lines: 6;
padding: 6px;
background-color: inherit;
}
element {
padding: 6px;
cursor: pointer;
background-color: inherit;
text-color: @main-fg;
}
element selected.normal {
border-radius: 6px;
background-color: @select-bg;
text-color: @select-fg;
}
element-text {
padding: 0 6px;
cursor: inherit;
background-color: inherit;
text-color: inherit;
}

View file

@ -0,0 +1,14 @@
/*
bg - background
fg - foreground
br - border
*/
* {
main-bg: #11111b;
main-fg: #cdd6f4;
main-br: #9399b2;
input-bg: #181825;
select-bg: #9399b2;
select-fg: #11111b;
}

View file

@ -0,0 +1,79 @@
/* WiFi menu */
configuration {
font: "JetBrainsMono Nerd Font 8";
}
@theme "~/.config/rofi/theme.rasi"
/* Window */
window {
location: north;
anchor: south;
y-offset: 3px;
width: 240px;
border: 2px;
border-radius: 10px;
border-color: @main-br;
background-color: @main-bg;
children: [ mainbox ];
}
mainbox {
spacing: 0;
background-color: inherit;
text-color: @main-fg;
children: [ inputbar, listview ];
}
/* Input */
inputbar {
margin: 6px;
border-radius: 6px;
spacing: inherit;
background-color: @input-bg;
text-color: inherit;
children: [ prompt, entry ];
}
prompt {
padding: 6px 6px 6px 12px;
background-color: inherit;
text-color: inherit;
}
entry {
placeholder: "Search";
padding: 6px 0;
cursor: text;
background-color: inherit;
text-color: inherit;
}
/* List */
listview {
lines: 6;
cycle: false;
padding: 0 6px 6px 6px;
background-color: inherit;
}
element {
padding: 6px;
cursor: pointer;
background-color: inherit;
text-color: @main-fg;
}
element selected active,
element selected normal {
border-radius: 6px;
background-color: @select-bg;
text-color: @select-fg;
}
element-text {
padding: 0 6px;
cursor: inherit;
background-color: inherit;
text-color: inherit;
}