rearrange hyprland config; change back to old waybar: adjust waybar colors; add btop
This commit is contained in:
96
rofi/bluetooth-menu.rasi
Normal file
96
rofi/bluetooth-menu.rasi
Normal file
@@ -0,0 +1,96 @@
|
||||
/* Bluetooth menu */
|
||||
|
||||
@theme "~/.config/rofi/theme.rasi"
|
||||
|
||||
configuration {
|
||||
font: "JetBrainsMono Nerd Font 8";
|
||||
}
|
||||
|
||||
/* Window */
|
||||
|
||||
window {
|
||||
location: north;
|
||||
anchor: south;
|
||||
y-offset: 3px;
|
||||
width: 240px;
|
||||
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, inputbar ];
|
||||
}
|
||||
|
||||
textbox-custom {
|
||||
font: "JetBrainsMono Nerd Font Bold 8";
|
||||
horizontal-align: 0.5;
|
||||
padding: 1px 0;
|
||||
expand: false;
|
||||
background-color: @select-bg;
|
||||
text-color: @select-fg;
|
||||
expand: false;
|
||||
content: " Bluetooth";
|
||||
}
|
||||
|
||||
/* Input */
|
||||
|
||||
inputbar {
|
||||
margin: -32px 6px 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 {
|
||||
border: 2px 0 0 0;
|
||||
border-radius: 8px;
|
||||
border-color: @main-br;
|
||||
lines: 6;
|
||||
fixed-height: false;
|
||||
dynamic: false;
|
||||
cycle: false;
|
||||
margin: 0 0 -2px;
|
||||
padding: 6px 6px 40px;
|
||||
background-color: @main-bg;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
69
rofi/power-menu.rasi
Normal file
69
rofi/power-menu.rasi
Normal file
@@ -0,0 +1,69 @@
|
||||
/* Power menu */
|
||||
|
||||
@theme "~/.config/rofi/theme.rasi"
|
||||
|
||||
configuration {
|
||||
font: "JetBrainsMono Nerd Font 8";
|
||||
}
|
||||
|
||||
/* 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 8";
|
||||
horizontal-align: 0.5;
|
||||
padding: 1px 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;
|
||||
}
|
||||
45
rofi/theme.rasi
Normal file
45
rofi/theme.rasi
Normal file
@@ -0,0 +1,45 @@
|
||||
/* Catppuccin Macchiato */
|
||||
|
||||
* {
|
||||
rosewater: #f4dbd6;
|
||||
flamingo: #f0c6c6;
|
||||
pink: #f5bde6;
|
||||
mauve: #c6a0f6;
|
||||
red: #ed8796;
|
||||
maroon: #ee99a0;
|
||||
peach: #f5a97f;
|
||||
yellow: #eed49f;
|
||||
green: #a6da95;
|
||||
teal: #8bd5ca;
|
||||
sky: #91d7e3;
|
||||
sapphire: #7dc4e4;
|
||||
blue: #8aadf4;
|
||||
lavender: #b7bdf8;
|
||||
text: #cad3f5;
|
||||
subtext1: #b8c0e0;
|
||||
subtext0: #a5adcb;
|
||||
overlay2: #939ab7;
|
||||
overlay1: #8087a2;
|
||||
overlay0: #6e738d;
|
||||
surface2: #5b6078;
|
||||
surface1: #494d64;
|
||||
surface0: #363a4f;
|
||||
base: #24273a;
|
||||
mantle: #1e2030;
|
||||
crust: #181926;
|
||||
}
|
||||
|
||||
/*
|
||||
bg - background
|
||||
fg - foreground
|
||||
br - border
|
||||
*/
|
||||
|
||||
* {
|
||||
main-bg: @crust;
|
||||
main-fg: @text;
|
||||
main-br: @overlay2;
|
||||
input-bg: @mantle;
|
||||
select-bg: @overlay2;
|
||||
select-fg: @crust;
|
||||
}
|
||||
45
rofi/themes/catppuccin-frappe.rasi
Normal file
45
rofi/themes/catppuccin-frappe.rasi
Normal 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;
|
||||
}
|
||||
45
rofi/themes/catppuccin-latte.rasi
Normal file
45
rofi/themes/catppuccin-latte.rasi
Normal file
@@ -0,0 +1,45 @@
|
||||
/* Catppuccin Latte */
|
||||
|
||||
* {
|
||||
rosewater: #dc8a78;
|
||||
flamingo: #dd7878;
|
||||
pink: #ea76cb;
|
||||
mauve: #8839ef;
|
||||
red: #d20f39;
|
||||
maroon: #e64553;
|
||||
peach: #fe640b;
|
||||
yellow: #df8e1d;
|
||||
green: #40a02b;
|
||||
teal: #179299;
|
||||
sky: #04a5e5;
|
||||
sapphire: #209fb5;
|
||||
blue: #1e66f5;
|
||||
lavender: #7287fd;
|
||||
text: #4c4f69;
|
||||
subtext1: #5c5f77;
|
||||
subtext0: #6c6f85;
|
||||
overlay2: #7c7f93;
|
||||
overlay1: #8c8fa1;
|
||||
overlay0: #9ca0b0;
|
||||
surface2: #acb0be;
|
||||
surface1: #bcc0cc;
|
||||
surface0: #ccd0da;
|
||||
base: #eff1f5;
|
||||
mantle: #e6e9ef;
|
||||
crust: #dce0e8;
|
||||
}
|
||||
|
||||
/*
|
||||
bg - background
|
||||
fg - foreground
|
||||
br - border
|
||||
*/
|
||||
|
||||
* {
|
||||
main-bg: @crust;
|
||||
main-fg: @text;
|
||||
main-br: @overlay2;
|
||||
input-bg: @mantle;
|
||||
select-bg: @overlay2;
|
||||
select-fg: @crust;
|
||||
}
|
||||
45
rofi/themes/catppuccin-macchiato.rasi
Normal file
45
rofi/themes/catppuccin-macchiato.rasi
Normal file
@@ -0,0 +1,45 @@
|
||||
/* Catppuccin Macchiato */
|
||||
|
||||
* {
|
||||
rosewater: #f4dbd6;
|
||||
flamingo: #f0c6c6;
|
||||
pink: #f5bde6;
|
||||
mauve: #c6a0f6;
|
||||
red: #ed8796;
|
||||
maroon: #ee99a0;
|
||||
peach: #f5a97f;
|
||||
yellow: #eed49f;
|
||||
green: #a6da95;
|
||||
teal: #8bd5ca;
|
||||
sky: #91d7e3;
|
||||
sapphire: #7dc4e4;
|
||||
blue: #8aadf4;
|
||||
lavender: #b7bdf8;
|
||||
text: #cad3f5;
|
||||
subtext1: #b8c0e0;
|
||||
subtext0: #a5adcb;
|
||||
overlay2: #939ab7;
|
||||
overlay1: #8087a2;
|
||||
overlay0: #6e738d;
|
||||
surface2: #5b6078;
|
||||
surface1: #494d64;
|
||||
surface0: #363a4f;
|
||||
base: #24273a;
|
||||
mantle: #1e2030;
|
||||
crust: #181926;
|
||||
}
|
||||
|
||||
/*
|
||||
bg - background
|
||||
fg - foreground
|
||||
br - border
|
||||
*/
|
||||
|
||||
* {
|
||||
main-bg: @crust;
|
||||
main-fg: @text;
|
||||
main-br: @overlay2;
|
||||
input-bg: @mantle;
|
||||
select-bg: @overlay2;
|
||||
select-fg: @crust;
|
||||
}
|
||||
45
rofi/themes/catppuccin-mocha.rasi
Normal file
45
rofi/themes/catppuccin-mocha.rasi
Normal file
@@ -0,0 +1,45 @@
|
||||
/* Catppuccin Mocha */
|
||||
|
||||
* {
|
||||
rosewater: #f5e0dc;
|
||||
flamingo: #f2cdcd;
|
||||
pink: #f5c2e7;
|
||||
mauve: #cba6f7;
|
||||
red: #f38ba8;
|
||||
maroon: #eba0ac;
|
||||
peach: #fab387;
|
||||
yellow: #f9e2af;
|
||||
green: #a6e3a1;
|
||||
teal: #94e2d5;
|
||||
sky: #89dceb;
|
||||
sapphire: #74c7ec;
|
||||
blue: #89b4fa;
|
||||
lavender: #b4befe;
|
||||
text: #cdd6f4;
|
||||
subtext1: #bac2de;
|
||||
subtext0: #a6adc8;
|
||||
overlay2: #9399b2;
|
||||
overlay1: #7f849c;
|
||||
overlay0: #6c7086;
|
||||
surface2: #585b70;
|
||||
surface1: #45475a;
|
||||
surface0: #313244;
|
||||
base: #1e1e2e;
|
||||
mantle: #181825;
|
||||
crust: #11111b;
|
||||
}
|
||||
|
||||
/*
|
||||
bg - background
|
||||
fg - foreground
|
||||
br - border
|
||||
*/
|
||||
|
||||
* {
|
||||
main-bg: @crust;
|
||||
main-fg: @text;
|
||||
main-br: @overlay2;
|
||||
input-bg: @mantle;
|
||||
select-bg: @overlay2;
|
||||
select-fg: @crust;
|
||||
}
|
||||
45
rofi/themes/gruvbox-dark.rasi
Normal file
45
rofi/themes/gruvbox-dark.rasi
Normal file
@@ -0,0 +1,45 @@
|
||||
/* Gruvbox Dark */
|
||||
|
||||
* {
|
||||
bg0h: #1d2021;
|
||||
bg0: #282828;
|
||||
bg1: #3c3836;
|
||||
bg2: #504945;
|
||||
bg3: #665c54;
|
||||
bg4: #7c6f64;
|
||||
gray: #928374;
|
||||
fg4: #a89984;
|
||||
fg3: #bdae93;
|
||||
fg2: #d5c4a1;
|
||||
fg1: #ebdbb2;
|
||||
fg0: #fbf1c7;
|
||||
red: #cc241d;
|
||||
brightred: #fb4934;
|
||||
green: #98971a;
|
||||
brightgreen: #b8bb26;
|
||||
yellow: #d79921;
|
||||
brightyellow: #fabd2f;
|
||||
blue: #458588;
|
||||
brightblue: #83a598;
|
||||
purple: #b16286;
|
||||
brightpurple: #d3869b;
|
||||
aqua: #689d6a;
|
||||
brightaqua: #8ec07c;
|
||||
orange: #d65d0e;
|
||||
brightorange: #fe8019;
|
||||
}
|
||||
|
||||
/*
|
||||
bg - background
|
||||
fg - foreground
|
||||
br - border
|
||||
*/
|
||||
|
||||
* {
|
||||
main-bg: @bg0h;
|
||||
main-fg: @fg0;
|
||||
main-br: @yellow;
|
||||
input-bg: @bg1;
|
||||
select-bg: @yellow;
|
||||
select-fg: @bg0h;
|
||||
}
|
||||
45
rofi/themes/gruvbox-light.rasi
Normal file
45
rofi/themes/gruvbox-light.rasi
Normal file
@@ -0,0 +1,45 @@
|
||||
/* Gruvbox Dark */
|
||||
|
||||
* {
|
||||
bg0h: #f9f5d7;
|
||||
bg0: #fbf1c7;
|
||||
bg1: #ebdbb2;
|
||||
bg2: #d5c4a1;
|
||||
bg3: #bdae93;
|
||||
bg4: #a89984;
|
||||
gray: #928374;
|
||||
fg4: #7c6f64;
|
||||
fg3: #665c54;
|
||||
fg2: #504945;
|
||||
fg1: #3c3836;
|
||||
fg0: #282828;
|
||||
red: #cc241d;
|
||||
brightred: #9d0006;
|
||||
green: #98971a;
|
||||
brightgreen: #79740e;
|
||||
yellow: #d79921;
|
||||
brightyellow: #b57614;
|
||||
blue: #458588;
|
||||
brightblue: #076678;
|
||||
purple: #b16286;
|
||||
brightpurple: #8f3f71;
|
||||
aqua: #689d6a;
|
||||
brightaqua: #427b58;
|
||||
orange: #d65d0e;
|
||||
brightorange: #af3a03;
|
||||
}
|
||||
|
||||
/*
|
||||
bg - background
|
||||
fg - foreground
|
||||
br - border
|
||||
*/
|
||||
|
||||
* {
|
||||
main-bg: @bg0h;
|
||||
main-fg: @fg0;
|
||||
main-br: @brightyellow;
|
||||
input-bg: @bg1;
|
||||
select-bg: @brightyellow;
|
||||
select-fg: @bg0h;
|
||||
}
|
||||
96
rofi/wifi-menu.rasi
Normal file
96
rofi/wifi-menu.rasi
Normal file
@@ -0,0 +1,96 @@
|
||||
/* WiFi menu */
|
||||
|
||||
@theme "~/.config/rofi/theme.rasi"
|
||||
|
||||
configuration {
|
||||
font: "JetBrainsMono Nerd Font 8";
|
||||
}
|
||||
|
||||
/* Window */
|
||||
|
||||
window {
|
||||
location: north;
|
||||
anchor: south;
|
||||
y-offset: 3px;
|
||||
width: 240px;
|
||||
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, inputbar ];
|
||||
}
|
||||
|
||||
textbox-custom {
|
||||
font: "JetBrainsMono Nerd Font Bold 8";
|
||||
horizontal-align: 0.5;
|
||||
padding: 1px 0;
|
||||
expand: false;
|
||||
background-color: @select-bg;
|
||||
text-color: @select-fg;
|
||||
expand: false;
|
||||
content: " Wi-Fi";
|
||||
}
|
||||
|
||||
/* Input */
|
||||
|
||||
inputbar {
|
||||
margin: -32px 6px 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 {
|
||||
border: 2px 0 0 0;
|
||||
border-radius: 8px;
|
||||
border-color: @main-br;
|
||||
lines: 6;
|
||||
fixed-height: false;
|
||||
dynamic: false;
|
||||
cycle: false;
|
||||
margin: 0 0 -2px;
|
||||
padding: 6px 6px 40px;
|
||||
background-color: @main-bg;
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user