GAAAAAAAAAY

This commit is contained in:
2025-05-01 15:47:45 -05:00
parent b27c751d62
commit 5964c6fc49
12 changed files with 302 additions and 67 deletions

View File

@@ -14,4 +14,4 @@ configuration {
}
@theme "~/.config/rofi/tokyo-night.rasi"
@theme "~/.config/rofi/nord.rasi"

View File

@@ -13,4 +13,4 @@ configuration {
}
@theme "~/.config/rofi/tokyo-night.rasi"
@theme "~/.config/rofi/nord.rasi"

132
modules/rofi/nord.rasi Normal file
View File

@@ -0,0 +1,132 @@
* {
scrollbar: false;
bg: #3b4252;
bg-dark: #2e3440;
bg-highlight: #4c566a;
fg: #c0caf5;
fg-dark: #3b4261;
red-dark: #bf616a;
red-light: #bf616a;
yellow: #ebcb8b;
orange: #d08770;
gray: #565f89;
background: @bg-dark;
background-color: @background;
foreground: @fg;
border-color: @gray;
separatorcolor: @border-color;
scrollbar-handle: @border-color;
normal-background: @background;
normal-foreground: @foreground;
alternate-normal-background: @bg-dark;
alternate-normal-foreground: @fg;
selected-normal-background: @bg-highlight;
selected-normal-foreground: @fg;
active-background: @orange;
active-foreground: @bg;
alternate-active-background: @active-background;
alternate-active-foreground: @active-foreground;
selected-active-background: @yellow;
selected-active-foreground: @active-foreground;
urgent-background: @red-dark;
urgent-foreground: @background;
alternate-urgent-background: @urgent-background;
alternate-urgent-foreground: @urgent-foreground;
selected-urgent-background: @red-dark;
selected-urgent-foreground: @urgent-foreground;
}
window {
height: 600;
width: 600;
border-radius: 10;
}
mainbox {
spacing: 0;
children: [inputbar, message, listview];
}
inputbar {
color: @normal-foreground;
padding: 14;
background-color: @background;
}
message {
padding: 10;
background-color: @background;
}
listview {
padding: 8;
border-radius: 0 0 10 10;
border: 2 2 2 2;
border-color: @background;
background-color: @background;
dynamic: false;
}
textbox {
text-color: @normal-foreground;
}
error-message {
border: 20 20 20 20;
}
entry, prompt, case-indicator {
text-color: inherit;
}
prompt {
margin: 0 10 0 0;
}
element {
padding: 5;
vertical-align: 0.5;
border-radius: 10;
text-color: @normal-foreground;
background-color: @normal-background;
}
element.selected.normal {
background-color: @selected-normal-background;
}
element.alternate.normal {
background-color: inherit;
}
element.normal.active, element.alternate.active {
background-color: @background;
}
element.selected.active {
background-color: @selected-normal-background;
}
element.normal.urgent, element.alternate.urgent {
background-color: @urgent-background;
}
element.selected.urgent {
background-color: @urgent-background;
}
element-text, element-icon {
size: 40;
margin: 0 10 0 0;
vertical-align: 0.5;
background-color: inherit;
text-color: @normal-foreground;
}