feat: switched back to hyprland

This commit is contained in:
Nick 2025-01-08 01:05:45 -06:00
parent dd99b3a827
commit b0dc23c7c0
144 changed files with 1347 additions and 477 deletions

View file

@ -0,0 +1,79 @@
{flake, ...}: let
inherit (flake.config.aesthetics.themes.theme) font colors;
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};
}
#tray, #pulseaudio, #network, #cpu, #memory, #disk, #clock {
font-size: ${custom.font_size};
color: #${colors.mauve};
padding-right: 10px;
}
#cpu {
}
#memory {
}
#disk {
}
#tray {
}
#pulseaudio {
}
#network {
}
#clock {
}
#custom-launcher {
font-size: 20px;
color: #${colors.mauve};
font-weight: ${custom.font_weight};
padding-left: 10px;
}
''