nixos-config/modules/home/waybar/style.nix

99 lines
2 KiB
Nix
Raw Normal View History

2024-03-01 23:38:10 +01:00
{ custom, ... }:
2023-11-05 17:56:55 +01:00
{
2023-11-05 11:40:44 +01:00
programs.waybar.style = ''
2024-03-01 23:38:10 +01:00
* { all: initial; }
2023-11-05 11:40:44 +01:00
* {
2023-11-12 18:17:37 +01:00
border: none;
border-radius: 0px;
2024-03-01 23:38:10 +01:00
padding: 0;
margin: 0;
min-height: 0px;
2023-11-12 18:17:37 +01:00
font-family: ${custom.font};
2023-11-12 22:16:40 +01:00
font-weight: bold;
2023-11-13 00:03:37 +01:00
font-size: 15px;
2023-11-12 23:52:22 +01:00
opacity: ${custom.opacity};
2023-11-05 11:40:44 +01:00
}
window#waybar {
2024-03-01 23:38:10 +01:00
background: rgba(24, 24, 37, 0.5);
2023-11-05 11:40:44 +01:00
}
#workspaces {
2023-11-12 18:17:37 +01:00
color: #${custom.primary_accent}
2023-11-05 11:40:44 +01:00
}
#workspaces button {
2023-11-12 18:17:37 +01:00
padding: 0px 5px;
margin: 0px 3px;
2023-11-13 00:03:37 +01:00
border-radius: 15px;
2023-11-12 23:04:40 +01:00
color: #${custom.background};
2023-11-12 23:15:40 +01:00
background: #${custom.secondary_accent};
2023-11-12 23:09:16 +01:00
transition: all 0.2s ease-in-out;
2023-11-05 11:40:44 +01:00
}
#workspaces button.active {
2023-11-12 23:15:40 +01:00
background-color: #${custom.primary_accent};
2023-11-12 18:17:37 +01:00
color: #${custom.background};
2023-11-12 23:04:40 +01:00
border-radius: 15px;
2023-11-12 23:09:16 +01:00
min-width: 35px;
2023-11-12 23:07:40 +01:00
background-size: 200% 200%;
2023-11-12 23:09:16 +01:00
transition: all 0.2s ease-in-out;
2023-11-05 11:40:44 +01:00
}
2023-11-12 18:17:37 +01:00
#workspaces button:hover {
2023-12-07 16:40:22 +01:00
background-color: #b4befe;
2023-11-12 18:17:37 +01:00
color: #${custom.background};
2023-11-12 23:04:40 +01:00
border-radius: 15px;
2023-11-12 23:09:16 +01:00
min-width: 35px;
2023-11-12 23:07:40 +01:00
background-size: 200% 200%;
2023-11-05 11:40:44 +01:00
}
2024-03-01 23:38:10 +01:00
#tray, #pulseaudio, #network, #cpu, #memory, #disk, #clock, custom-launcher {
color: #${custom.tertiary_accent};
2023-11-12 18:17:37 +01:00
font-weight: bold;
2023-11-05 11:40:44 +01:00
}
2023-11-12 23:44:54 +01:00
#cpu {
padding-left: 15px;
2023-11-12 23:51:45 +01:00
padding-right: 9px;
2023-11-12 23:44:54 +01:00
margin-left: 7px;
}
2023-11-13 19:15:15 +01:00
#memory {
2023-11-13 19:13:32 +01:00
padding-left: 9px;
padding-right: 9px;
}
2023-11-13 19:15:15 +01:00
#disk {
2023-11-12 23:51:45 +01:00
padding-left: 9px;
2023-11-12 23:44:54 +01:00
padding-right: 15px;
}
2023-11-12 22:31:45 +01:00
#tray {
2023-11-12 22:33:24 +01:00
padding: 0 20px;
2023-11-12 22:31:45 +01:00
margin-left: 7px;
}
#pulseaudio {
2023-11-12 22:49:00 +01:00
padding-left: 15px;
2023-11-12 23:51:45 +01:00
padding-right: 9px;
2023-11-12 22:50:29 +01:00
margin-left: 7px;
2023-11-12 22:31:45 +01:00
}
#network {
2023-11-12 23:51:45 +01:00
padding-left: 9px;
2023-11-12 22:49:00 +01:00
padding-right: 15px;
2023-11-05 11:40:44 +01:00
}
2023-11-12 22:31:45 +01:00
2023-11-12 18:17:37 +01:00
#clock {
2024-03-01 23:38:10 +01:00
padding-left: 9px;
padding-right: 15px;
2023-11-12 18:17:37 +01:00
}
#custom-launcher {
2024-03-01 23:38:10 +01:00
margin-left: 10px;
2023-11-12 18:17:37 +01:00
font-size: 22px;
}
2024-03-01 23:38:10 +01:00
2023-11-12 18:17:37 +01:00
#window{
2023-11-12 21:57:48 +01:00
background: #${custom.palette.tertiary_background_hex};
2023-11-05 11:40:44 +01:00
}
'';
}