Initial commit

This commit is contained in:
Quirin Kinader 2025-08-17 13:30:31 +02:00
commit 44ca2ba179
11 changed files with 968 additions and 0 deletions

View file

@ -0,0 +1,72 @@
/* Power menu */
@theme "~/.config/rofi/theme.rasi"
configuration {
font: "JetBrainsMono Nerd Font 8";
hover-select: true;
me-select-entry: "MousePrimary";
me-accept-entry: "!MousePrimary";
}
/* Window */
window {
location: northeast;
anchor: north;
x-offset: -3px;
y-offset: 3px;
width: 150px;
border: 3px;
border-radius: 10px;
border-color: @main-br;
background-color: @main-bg;
children: [ mainbox ];
}
mainbox {
spacing: 0;
background-color: @main-br;
text-color: @main-fg;
children: [ textbox-custom, listview ];
}
textbox-custom {
font: "JetBrainsMono Nerd Font Bold 2";
horizontal-align: 0.5;
padding: 0;
expand: false;
background-color: @select-bg;
text-color: @select-fg;
expand: false;
content: " Power";
}
/* List */
listview {
border: 2px 0 0 0;
border-radius: 8px;
border-color: @main-br;
lines: 6;
padding: 6px;
background-color: @main-bg;
}
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,45 @@
/* Catppuccin Frappe */
* {
rosewater: #f2d5cf;
flamingo: #eebebe;
pink: #f4b8e4;
mauve: #ca9ee6;
red: #e78284;
maroon: #ea999c;
peach: #ef9f76;
yellow: #e5c890;
green: #a6d189;
teal: #81c8be;
sky: #99d1db;
sapphire: #85c1dc;
blue: #8caaee;
lavender: #babbf1;
text: #c6d0f5;
subtext1: #b5bfe2;
subtext0: #a5adce;
overlay2: #949cbb;
overlay1: #838ba7;
overlay0: #737994;
surface2: #626880;
surface1: #51576d;
surface0: #414559;
base: #303446;
mantle: #292c3c;
crust: #232634;
}
/*
bg - background
fg - foreground
br - border
*/
* {
main-bg: @crust;
main-fg: @text;
main-br: @overlay2;
input-bg: @mantle;
select-bg: @overlay2;
select-fg: @crust;
}