mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 09:13:55 -05:00
waybar: moved to new theme module and declarative config file definition
This commit is contained in:
parent
0fea8fad78
commit
cc10649a87
|
@ -11,10 +11,98 @@
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
blueberry
|
blueberry
|
||||||
pavucontrol
|
pavucontrol
|
||||||
(nerdfonts.override {fonts = ["Noto"];})
|
|
||||||
];
|
];
|
||||||
|
|
||||||
xdg.configFile."waybar/style.css".source = ./waybar.css;
|
xdg.configFile."waybar/style.css".text = ''
|
||||||
|
* {
|
||||||
|
border: none;
|
||||||
|
border-radius: 0;
|
||||||
|
font-family: "${lib.strings.removeSuffix "-Regular" config.alyraffauf.desktop.theme.terminalFont.name}";
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
|
||||||
|
window#waybar {
|
||||||
|
background: rgba (35, 38, 52, 0.0);
|
||||||
|
color: ${config.alyraffauf.desktop.theme.colors.text};
|
||||||
|
}
|
||||||
|
|
||||||
|
#workspaces button {
|
||||||
|
padding: 0px 5px;
|
||||||
|
margin: 0 0px;
|
||||||
|
color: ${config.alyraffauf.desktop.theme.colors.text};
|
||||||
|
}
|
||||||
|
|
||||||
|
#workspaces button.active,
|
||||||
|
#workspaces button.focused {
|
||||||
|
color: ${config.alyraffauf.desktop.theme.colors.primary};
|
||||||
|
}
|
||||||
|
|
||||||
|
#submap,
|
||||||
|
#mode {
|
||||||
|
padding: 0 15px;
|
||||||
|
margin: 0 5px;
|
||||||
|
color: #e78284;
|
||||||
|
}
|
||||||
|
|
||||||
|
#tags button {
|
||||||
|
padding: 0px 5px;
|
||||||
|
margin: 0 0px;
|
||||||
|
color: ${config.alyraffauf.desktop.theme.colors.text};
|
||||||
|
}
|
||||||
|
|
||||||
|
#tags button.focused {
|
||||||
|
color: ${config.alyraffauf.desktop.theme.colors.primary};
|
||||||
|
}
|
||||||
|
|
||||||
|
#clock,
|
||||||
|
#battery,
|
||||||
|
#bluetooth,
|
||||||
|
#network,
|
||||||
|
#power-profiles-daemon,
|
||||||
|
#pulseaudio,
|
||||||
|
#wireplumber,
|
||||||
|
#inhibitor,
|
||||||
|
#custom-logout,
|
||||||
|
#tray {
|
||||||
|
padding: 0 7.5px;
|
||||||
|
margin: 0 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#battery {
|
||||||
|
color: ${config.alyraffauf.desktop.theme.colors.text};
|
||||||
|
}
|
||||||
|
|
||||||
|
#battery.charging {
|
||||||
|
color: ${config.alyraffauf.desktop.theme.colors.primary};
|
||||||
|
}
|
||||||
|
|
||||||
|
#battery.critical:not(.charging) {
|
||||||
|
color: #e78284;
|
||||||
|
}
|
||||||
|
|
||||||
|
#workspaces,
|
||||||
|
#mode,
|
||||||
|
#submap,
|
||||||
|
#tray,
|
||||||
|
#clock,
|
||||||
|
#hardware {
|
||||||
|
border-radius: 10;
|
||||||
|
background: rgba (35, 38, 52, 0.8);
|
||||||
|
margin: 5px 10px 0px 10px;
|
||||||
|
padding: 0px 10px 0px 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#clock {
|
||||||
|
padding: 0px 20px 0px 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#submap,
|
||||||
|
#mode {
|
||||||
|
color: ${config.alyraffauf.desktop.theme.colors.text};
|
||||||
|
background: rgba(231, 130, 132, 0.8);
|
||||||
|
}
|
||||||
|
'';
|
||||||
|
|
||||||
programs.waybar = {
|
programs.waybar = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
Loading…
Reference in a new issue