1
0
Fork 0
mirror of https://git.sr.ht/~neverness/ultima synced 2025-01-08 19:53:53 +00:00
ultima/modules/home/wm/misc/waybar/style.nix

121 lines
2.5 KiB
Nix

{ config, ... }:
let
font = config.stylix.fonts;
in
{
programs.waybar.style = with config.lib.stylix.colors; ''
/* BAR ITSELF */
* {
font-family: "${font.monospace.name}";
font-weight: bold;
font-size: 16px;
}
window#waybar {
background-color: transparent;
color: #${base06};
}
window#waybar > box {
margin: 5px 0px 0px 0px;
background-color: #${base00};
border-top: 0px;
border-bottom: 0;
border-style: solid;
border-color: #3C3836;
/* box-shadow: 1 1 3 1px #101010; */
}
/* WORKSPACES */
#workspaces button {
background-color: #${base03};
border-radius: 20px;
margin: 2px;
padding: 0px;
padding-right: 6px;
padding-left: 6px;
color: #${base06};
min-height: 25px;
transition: all 0.4s ease-in-out;
}
#workspaces button label {
color: #${base06};
font-weight: bolder;
}
#workspaces button.empty {
background: #${base02};
}
#workspaces button.active {
background: radial-gradient(circle, #${base0E} 0%, #${base0E} 50%, #${base0D} 100%);
background-size: 400% 400%;
animation: gradient 5s linear infinite;
transition: all 0.3s ease-in-out;
border-color: #${base00};
}
#workspaces button.active label {
color: #${base02};
font-weight: bolder;
}
@keyframes gradient {
0% { background-position: 0px 50px; }
50% { background-position: 100px 30px; }
100% { background-position: 0px 50px; }
}
@keyframes gradient_f {
0% { background-position: 0px 200px; }
50% { background-position: 200px 0px; }
100% { background-position: 400px 200px; }
}
@keyframes gradient_f_nh {
0% { background-position: 0px 200px; }
100% { background-position: 200px 200px; }
}
/* MODULES */
#custom-date,
#battery,
#backlight
#clock,
#pulseaudio,
#workspaces,
#window,
#language,
#text,
#custom-launcher,
#custom-separator
#battery,
#backlight,
#custom-date,
#cava,
#network,
#disk,
#clock,
#language,
#pulseaudio,
#custom-separator,
#custom-launcher,
#tray {
color: #${base06};
background-color: transparent;
padding: 0 0.4em;
padding-top: 0px;
padding-bottom: 2px;
border-style: solid;
min-height: 30px;
}
#workspaces {
margin: 3 0 3 0px;
border-radius: 14 14 14 14px;
}
'';
}