mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-16 18:15:13 -05:00
feat: switched back to hyprland
This commit is contained in:
parent
dd99b3a827
commit
b0dc23c7c0
144 changed files with 1347 additions and 477 deletions
79
home/modules/waybar/config/style.nix
Executable file
79
home/modules/waybar/config/style.nix
Executable 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;
|
||||
}
|
||||
''
|
Loading…
Add table
Add a link
Reference in a new issue