2025-01-08 01:05:45 -06:00
|
|
|
{flake, ...}: let
|
2025-01-08 19:06:14 -06:00
|
|
|
inherit
|
|
|
|
(flake.config.aesthetics.themes.theme)
|
|
|
|
font
|
|
|
|
colors
|
|
|
|
;
|
2025-01-08 01:05:45 -06:00
|
|
|
custom = {
|
|
|
|
font = font;
|
|
|
|
font_size = "14px";
|
|
|
|
font_weight = "bold";
|
|
|
|
text_color = colors.mauve;
|
|
|
|
secondary_accent = colors.lavender;
|
|
|
|
tertiary_accent = colors.sky;
|
|
|
|
background = colors.base;
|
|
|
|
opacityBg = "0.90";
|
|
|
|
opacityBt = "1";
|
|
|
|
};
|
|
|
|
in ''
|
|
|
|
|
|
|
|
* {
|
|
|
|
min-height: 0px;
|
|
|
|
font-family: ${custom.font};
|
|
|
|
font-weight: ${custom.font_weight};
|
|
|
|
}
|
|
|
|
|
|
|
|
window#waybar {
|
|
|
|
background: #${colors.crust};
|
|
|
|
color: #${colors.surface2};
|
|
|
|
border: 2px solid;
|
|
|
|
border-radius: 30px;
|
|
|
|
border-color: #${colors.mauve};
|
|
|
|
min-height: 100px;
|
|
|
|
opacity: ${custom.opacityBg};
|
|
|
|
}
|
|
|
|
|
|
|
|
#workspaces {
|
|
|
|
font-size: 18px;
|
|
|
|
padding-left: 15px;
|
|
|
|
margin-bottom: 2px;
|
|
|
|
}
|
|
|
|
#workspaces button {
|
|
|
|
color: #${colors.overlay2};
|
|
|
|
padding: 5px;
|
|
|
|
opacity: ${custom.opacityBt};
|
|
|
|
}
|
|
|
|
#workspaces button.empty {
|
|
|
|
color: #${colors.surface2};
|
|
|
|
}
|
|
|
|
#workspaces button.active {
|
|
|
|
color: #${colors.mauve};
|
|
|
|
}
|
|
|
|
|
2025-01-08 19:06:14 -06:00
|
|
|
#tray, #pulseaudio, #cpu, #memory, #disk, #clock {
|
2025-01-08 01:05:45 -06:00
|
|
|
font-size: ${custom.font_size};
|
|
|
|
color: #${colors.mauve};
|
|
|
|
padding-right: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#cpu {
|
|
|
|
}
|
2025-01-08 19:06:14 -06:00
|
|
|
|
2025-01-08 01:05:45 -06:00
|
|
|
#memory {
|
|
|
|
}
|
2025-01-08 19:06:14 -06:00
|
|
|
|
2025-01-08 01:05:45 -06:00
|
|
|
#disk {
|
|
|
|
}
|
|
|
|
|
|
|
|
#tray {
|
|
|
|
}
|
|
|
|
|
|
|
|
#pulseaudio {
|
|
|
|
}
|
|
|
|
|
|
|
|
#clock {
|
|
|
|
}
|
|
|
|
|
|
|
|
#custom-launcher {
|
|
|
|
font-size: 20px;
|
|
|
|
color: #${colors.mauve};
|
|
|
|
font-weight: ${custom.font_weight};
|
|
|
|
padding-left: 10px;
|
|
|
|
}
|
|
|
|
''
|