From f555189371ee2682cd8f2bb495de05bc1569785e Mon Sep 17 00:00:00 2001
From: 0fie <151028199+0fie@users.noreply.github.com>
Date: Sat, 23 Mar 2024 22:19:39 +0200
Subject: [PATCH] feat: current date will now be highlighted on hover

When user hovers on the date module, the current date will now be highlighted. The highlight color can be changed.
---
 modules/home/waybar/settings.nix | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/modules/home/waybar/settings.nix b/modules/home/waybar/settings.nix
index 71c94d1..021c943 100644
--- a/modules/home/waybar/settings.nix
+++ b/modules/home/waybar/settings.nix
@@ -24,6 +24,9 @@
         "network"
     ];
     clock= {
+        calendar = {
+          format = { today = "<span color='#ff6699'><b><u>{}</u></b></span>"; };
+        };
         format = " {:%H:%M}";
         tooltip= "true";
         tooltip-format= "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>";