diff --git a/README.org b/README.org
index 7b394fe9..09bb0ae2 100644
--- a/README.org
+++ b/README.org
@@ -1333,7 +1333,7 @@ Super Agenda gives me a really nice way of making the agenda view look a lot bet
 (use-package org-super-agenda
   :after org
   :init
-  (setq org-super-agenda-groups '((:name "Today"
+  (setq org-super-agenda-groups '((:name "📅 Today"
                                    :time-grid t
                                    :scheduled today)
                                   (:name "Due Today"
@@ -1342,7 +1342,8 @@ Super Agenda gives me a really nice way of making the agenda view look a lot bet
                                    :priority "A")
                                   (:name "Overdue"
                                    :time-grid t
-                                   :scheduled today)
+                                   :scheduled past
+                                   :deadline past)
                                   (:name "Due soon"
                                    :deadline future)))
   :config
diff --git a/init.el b/init.el
index c5119f94..f0046193 100644
--- a/init.el
+++ b/init.el
@@ -863,7 +863,7 @@ vertically."
 (use-package org-super-agenda
   :after org
   :init
-  (setq org-super-agenda-groups '((:name "Today"
+  (setq org-super-agenda-groups '((:name "📅 Today"
                                    :time-grid t
                                    :scheduled today)
                                   (:name "Due Today"
@@ -872,7 +872,8 @@ vertically."
                                    :priority "A")
                                   (:name "Overdue"
                                    :time-grid t
-                                   :scheduled today)
+                                   :scheduled past
+                                   :deadline past)
                                   (:name "Due soon"
                                    :deadline future)))
   :config