mirror of
https://github.com/JulienMalka/snowfield.git
synced 2025-03-25 21:30:52 +01:00
199 lines
5.1 KiB
Nix
199 lines
5.1 KiB
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
let
|
|
cfg = config.luj.programs.waybar;
|
|
in
|
|
with lib;
|
|
{
|
|
options.luj.programs.waybar = {
|
|
enable = mkEnableOption "Enable waybar";
|
|
interfaceName = mkOption { type = lib.types.str; };
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
programs.waybar = {
|
|
enable = true;
|
|
systemd.enable = true;
|
|
settings = {
|
|
mainBar = {
|
|
layer = "top";
|
|
modules-left = [
|
|
"custom/nixos"
|
|
"hyprland/workspaces"
|
|
];
|
|
modules-center = [ "clock" ];
|
|
modules-right = [
|
|
"custom/mails"
|
|
"network"
|
|
"battery"
|
|
];
|
|
"custom/nixos" = {
|
|
format = " ❄ ";
|
|
tooltip = false;
|
|
};
|
|
"hyprland/workspaces" = {
|
|
format = "{name}";
|
|
tooltip = false;
|
|
all-outputs = true;
|
|
};
|
|
"clock" = { };
|
|
"backlight" = {
|
|
device = "intel_backlight";
|
|
format = "<span color='#cba6f7'>{icon}</span> {percent}%";
|
|
format-icons = [
|
|
""
|
|
""
|
|
""
|
|
""
|
|
""
|
|
""
|
|
""
|
|
""
|
|
""
|
|
];
|
|
};
|
|
"pulseaudio" = {
|
|
format = "<span color='#cba6f7'>{icon}</span> {volume}%";
|
|
format-muted = "";
|
|
tooltip = false;
|
|
format-icons = {
|
|
headphone = "";
|
|
default = [
|
|
""
|
|
""
|
|
""
|
|
""
|
|
""
|
|
""
|
|
""
|
|
""
|
|
];
|
|
};
|
|
scroll-step = 1;
|
|
};
|
|
"bluetooth" = {
|
|
format = "<span color='#cba6f7'></span> {status}";
|
|
format-disabled = "";
|
|
format-connected = "<span color='#cba6f7'></span> {num_connections}";
|
|
tooltip-format = "{device_enumerate}";
|
|
tooltip-format-enumerate-connected = "{device_alias} {device_address}";
|
|
};
|
|
"network" = {
|
|
interface = cfg.interfaceName;
|
|
format = "{ifname}";
|
|
format-wifi = "<span color='#cba6f7'> </span>{essid}";
|
|
format-ethernet = "{ipaddr}/{cidr} ";
|
|
format-disconnected = "<span color='#cba6f7'> </span>No Network";
|
|
tooltip = false;
|
|
};
|
|
"battery" = {
|
|
format = "<span color='#cba6f7'>{icon}</span> {capacity}%";
|
|
format-icons = [
|
|
""
|
|
""
|
|
""
|
|
""
|
|
""
|
|
];
|
|
format-charging = "<span color='#cba6f7'></span> {capacity}%";
|
|
tooltip = false;
|
|
};
|
|
"custom/mails" = {
|
|
format = "<span color='#cba6f7'></span> {}";
|
|
exec = "${pkgs.notmuch}/bin/notmuch count 'tag:unread and (tag:dgnum-inbox or tag:ens-inbox or tag:work-inbox or tag:telecom-inbox or tag:dgnum-bureau)'";
|
|
interval = 10;
|
|
};
|
|
};
|
|
};
|
|
style = ''
|
|
* {
|
|
border: none;
|
|
font-family: 'Fira Code', 'Symbols Nerd Font Mono';
|
|
font-size: 8px;
|
|
font-feature-settings: '"zero", "ss01", "ss02", "ss03", "ss04", "ss05", "cv31"';
|
|
min-height: 2px;
|
|
}
|
|
|
|
window#waybar {
|
|
background: transparent;
|
|
}
|
|
|
|
#custom-nixos, #workspaces {
|
|
border-radius: 8px;
|
|
background-color: #11111b;
|
|
color: #7eb9e3;
|
|
margin-top: 4px;
|
|
margin-bottom: 3px;
|
|
margin-right: 15px;
|
|
padding-top: 1px;
|
|
padding-left: 4px;
|
|
padding-right: 4px;
|
|
}
|
|
|
|
#workspaces {
|
|
padding-left: 1px;
|
|
padding-right: 1px;
|
|
}
|
|
|
|
#custom-nixos {
|
|
font-size: 15px;
|
|
margin-left: 15px;
|
|
}
|
|
|
|
#workspaces button {
|
|
background: #11111b;
|
|
color: #cdd6f4;
|
|
min-width: 0;
|
|
|
|
}
|
|
|
|
#workspaces button.active {
|
|
color: #cba6f7;
|
|
}
|
|
|
|
#clock, #backlight, #pulseaudio, #bluetooth, #network, #battery, #custom-mails{
|
|
border-radius: 10px;
|
|
background-color: #11111b;
|
|
color: #cdd6f4;
|
|
margin-top: 4px;
|
|
margin-bottom: 3px;
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
margin-right: 15px;
|
|
}
|
|
|
|
#backlight, #bluetooth {
|
|
border-top-right-radius: 0;
|
|
border-bottom-right-radius: 0;
|
|
padding-right: 5px;
|
|
margin-right: 0
|
|
}
|
|
|
|
#clock {
|
|
margin-right: 0;
|
|
}
|
|
|
|
@keyframes blink {
|
|
to {
|
|
background-color: #ffffff;
|
|
color: black;
|
|
}
|
|
}
|
|
|
|
#battery.warning:not(.charging) {
|
|
background: #f38ba8;
|
|
color: white;
|
|
animation-name: blink;
|
|
animation-duration: 0.5s;
|
|
animation-timing-function: linear;
|
|
animation-iteration-count: infinite;
|
|
animation-direction: alternate;
|
|
}
|
|
'';
|
|
};
|
|
};
|
|
}
|