nixos/home/hyprland/waybar/modules/clock.nix

25 lines
681 B
Nix
Raw Normal View History

{
format = "{:%a %d %b %R}";
format-alt = "{:%A %F %T}";
2023-07-12 11:45:48 +01:00
tooltip-format = "<tt><small>{calendar}</small></tt>";
calendar = {
2023-07-12 11:45:48 +01:00
mode = "month";
mode-mon-col = 3;
2023-07-12 11:45:48 +01:00
weeks-pos = "left";
on-scroll = 1;
on-click-right = "mode";
format = {
months = "<span color='#ffead3'><b>{}</b></span>";
days = "<span color='#ecc6d9'><b>{}</b></span>";
weeks = "<span color='#99ffdd'><b>W{}</b></span>";
weekdays = "<span color='#ffcc66'><b>{}</b></span>";
today = "<span color='#ff6699'><b><u>{}</u></b></span>";
};
};
actions = {
on-click-right = "mode";
on-scroll-up = "shift_up";
on-scroll-down = "shift_down";
};
}