Regenerated
This commit is contained in:
+338
-387
File diff suppressed because it is too large
Load Diff
+1
-1
@@ -2861,7 +2861,7 @@ This file contains all css for waybar
|
||||
@import url("file:///home/henrov/.config/shared/colors.css");
|
||||
|
||||
/* --- Global --- */
|
||||
* {
|
||||
* {
|
||||
font-family:
|
||||
Aporetic Sans Mono,
|
||||
Iosevka Nerd Font,
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
@import url("file:///home/henrov/.config/shared/colors.css");
|
||||
|
||||
/* --- Global --- */
|
||||
* {
|
||||
* {
|
||||
font-family:
|
||||
Aporetic Sans Mono,
|
||||
Iosevka Nerd Font,
|
||||
@@ -17,6 +17,9 @@ window#waybar {
|
||||
color: @text;
|
||||
}
|
||||
|
||||
/* --------------------------------------------------------- */
|
||||
/* MODULES CENTER BASE --- all visible widgets min 80px */
|
||||
/* --------------------------------------------------------- */
|
||||
.modules-center > widget {
|
||||
min-width: 80px;
|
||||
color: @text;
|
||||
@@ -26,22 +29,51 @@ window#waybar {
|
||||
linear-gradient(@base-alpha, @base-alpha) padding-box,
|
||||
linear-gradient(45deg, @blue, @green) border-box;
|
||||
border: 2px solid transparent;
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
|
||||
.modules-center > box + box {
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
.modules-center > widget label {
|
||||
.modules-center > widget label,
|
||||
.modules-center > label {
|
||||
padding: 0 5px;
|
||||
transition: padding 0.2s ease;
|
||||
}
|
||||
|
||||
.modules-center > label {
|
||||
padding: 0px 5px;
|
||||
transition: padding 0.2s ease;
|
||||
/* --- Anchors & dynamic modules --- */
|
||||
#custom-windows,
|
||||
#custom-hardware-anchor,
|
||||
#custom-connections-anchor {
|
||||
min-width: 0;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
opacity: 0;
|
||||
transition: min-width 0.2s ease, opacity 0.2s ease, padding 0.2s ease;
|
||||
}
|
||||
|
||||
/* Show anchors when active / hovered */
|
||||
#custom-windows.active {
|
||||
min-width: 80px;
|
||||
padding: 0 5px;
|
||||
margin: 0 2px;
|
||||
opacity: 0.5;
|
||||
font-weight: normal;
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
#hardware:hover #custom-hardware-anchor,
|
||||
#connections:hover #custom-connections-anchor {
|
||||
min-width: 80px;
|
||||
padding: 0 5px;
|
||||
margin: 0 2px;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
/* --------------------------------------------------------- */
|
||||
/* MODULES RIGHT --- min-width 80px for visible widgets */
|
||||
/* --------------------------------------------------------- */
|
||||
.modules-right > widget {
|
||||
min-width: 80px;
|
||||
color: @text;
|
||||
@@ -57,73 +89,15 @@ window#waybar {
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
.modules-right > widget label {
|
||||
padding: 0px 5px;
|
||||
transition: padding 0.2s ease;
|
||||
}
|
||||
|
||||
.modules-right > widget label,
|
||||
.modules-right > label {
|
||||
padding: 0px 5px;
|
||||
transition: padding 0.2s ease;
|
||||
}
|
||||
|
||||
/* --- hiding window counter --- */
|
||||
|
||||
#custom-windows {
|
||||
opacity: 0;
|
||||
min-width: 0;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
transition:
|
||||
opacity 0.2s ease,
|
||||
min-width 0.2s ease;
|
||||
}
|
||||
|
||||
/* Show it when active */
|
||||
#custom-windows.active {
|
||||
opacity: 0.5;
|
||||
font-weight: normal;
|
||||
font-size: 12px;
|
||||
min-width: 30px;
|
||||
padding: 0 3px;
|
||||
margin: 0 2px;
|
||||
}
|
||||
|
||||
/* --- Group specifics --- */
|
||||
|
||||
#hardware:hover #custom-hardware-anchor {
|
||||
opacity: 0;
|
||||
min-width: 0;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
transition:
|
||||
opacity 0.2s ease,
|
||||
width 0.2s ease;
|
||||
}
|
||||
|
||||
#connections:hover #custom-connections-anchor {
|
||||
opacity: 0;
|
||||
min-width: 0;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
transition:
|
||||
opacity 0.2s ease,
|
||||
width 0.2s ease;
|
||||
}
|
||||
|
||||
#clock,
|
||||
#idle_inhibitor,
|
||||
#battery,
|
||||
#cpu,
|
||||
#memory,
|
||||
#temperature,
|
||||
#network,
|
||||
#pulseaudio,
|
||||
#tray {
|
||||
margin: 0 5px;
|
||||
padding: 0 10px;
|
||||
}
|
||||
|
||||
/* --------------------------------------------------------- */
|
||||
/* SLIDERS / SPECIAL MODULES */
|
||||
/* --------------------------------------------------------- */
|
||||
#pulseaudio-slider {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
@@ -151,9 +125,8 @@ window#waybar {
|
||||
}
|
||||
|
||||
/* --------------------------------------------------------- */
|
||||
/* STATES */
|
||||
/* STATES / SPECIALS */
|
||||
/* --------------------------------------------------------- */
|
||||
|
||||
#idle_inhibitor.activated {
|
||||
background: linear-gradient(45deg, @blue, @green);
|
||||
border: 2px solid transparent;
|
||||
@@ -183,3 +156,18 @@ window#waybar {
|
||||
#temperature.critical {
|
||||
background-color: @red;
|
||||
}
|
||||
|
||||
/* --------------------------------------------------------- */
|
||||
/* GLOBAL MODULE SPACING */
|
||||
#clock,
|
||||
#idle_inhibitor,
|
||||
#battery,
|
||||
#cpu,
|
||||
#memory,
|
||||
#temperature,
|
||||
#network,
|
||||
#pulseaudio,
|
||||
#tray {
|
||||
margin: 0 5px;
|
||||
padding: 0 10px;
|
||||
}
|
||||
|
||||
@@ -1,102 +0,0 @@
|
||||
/* Catppuccin Mocha theme for Wofi with transparency and rounded corners */
|
||||
|
||||
/* === Catppuccin Mocha Palette === */
|
||||
|
||||
/* Background / Base */
|
||||
@define-color crust #11111b;
|
||||
@define-color mantle #181825;
|
||||
@define-color base #1e1e2e;
|
||||
@define-color base-alpha rgba(30, 30, 46, 0.9);
|
||||
|
||||
/* Surface */
|
||||
@define-color surface0 #313244;
|
||||
@define-color surface1 #45475a;
|
||||
@define-color surface2 #585b70;
|
||||
|
||||
/* Overlays */
|
||||
@define-color overlay0 #6c7086;
|
||||
@define-color overlay1 #7f849c;
|
||||
@define-color overlay2 #9399b2;
|
||||
|
||||
/* Subtext & Text */
|
||||
@define-color subtext0 #a6adc8;
|
||||
@define-color subtext1 #bac2de;
|
||||
@define-color text #cdd6f4;
|
||||
|
||||
/* Accents */
|
||||
@define-color rosewater #f5e0dc;
|
||||
@define-color flamingo #f2cdcd;
|
||||
@define-color pink #f5c2e7;
|
||||
@define-color mauve #cba6f7;
|
||||
@define-color red #f38ba8;
|
||||
@define-color maroon #eba0ac;
|
||||
@define-color peach #fab387;
|
||||
@define-color yellow #f9e2af;
|
||||
@define-color green #a6e3a1;
|
||||
@define-color teal #94e2d5;
|
||||
@define-color sapphire #74c7ec;
|
||||
@define-color blue #89b4fa;
|
||||
@define-color lavender #b4befe;
|
||||
|
||||
* {
|
||||
background-color: transparent;
|
||||
color: @text;
|
||||
font-family: "JetBrainsMono Nerd Font", monospace;
|
||||
font-size: 12pt;
|
||||
}
|
||||
|
||||
#main {
|
||||
background-color: @base;
|
||||
border: 1px solid @surface0;
|
||||
border-radius: 30px; /* Rounded corners */
|
||||
padding: 20px;
|
||||
box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
|
||||
#input {
|
||||
background-color: @surface0;
|
||||
color: @text;
|
||||
border: 1px solid @surface1;
|
||||
border-radius: 30px; /* Rounded corners */
|
||||
padding: 5px 10px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
#entry {
|
||||
background-color: rgba(
|
||||
200,
|
||||
200,
|
||||
200,
|
||||
0.2
|
||||
); /* very light grey, very transparent */
|
||||
color: @text;
|
||||
border-radius: 30px;
|
||||
padding: 5px 10px;
|
||||
margin: 2px 0;
|
||||
}
|
||||
|
||||
#entry:focus {
|
||||
background-color: @surface1;
|
||||
color: @lavender;
|
||||
border-radius: 30px; /* Rounded corners */
|
||||
background:
|
||||
linear-gradient(@base-alpha, @base-alpha) padding-box,
|
||||
linear-gradient(45deg, @blue, @green) border-box;
|
||||
}
|
||||
|
||||
#entry:selected {
|
||||
background-color: @surface2;
|
||||
color: @text;
|
||||
border-radius: 30px; /* Rounded corners */
|
||||
}
|
||||
|
||||
#scrollbar {
|
||||
background-color: @surface0;
|
||||
border-radius: 30px; /* Rounded corners */
|
||||
width: 8px;
|
||||
}
|
||||
|
||||
#scrollbar.handle {
|
||||
background-color: @blue;
|
||||
border-radius: 30px; /* Rounded corners */
|
||||
}
|
||||
Reference in New Issue
Block a user