Introduce date display alongside time

This commit is contained in:
2026-08-26 16:45:57 +01:00
parent ec959e54d1
commit 425a46e5a1
3 changed files with 41 additions and 29 deletions

View File

@@ -13,32 +13,41 @@
<property name="margin-start">32</property>
<property name="margin-end">32</property>
<!-- Top Bar: Title & Clock -->
<child>
<object class="GtkBox">
<property name="orientation">0</property>
<property name="valign">3</property>
<child>
<object class="GtkLabel" id="app_title_label">
<property name="label">Launcher Dashboard</property>
<style>
<class name="title-1"/>
</style>
<property name="hexpand">true</property>
<property name="xalign">0</property>
</object>
</child>
<child>
<object class="GtkLabel" id="clock_label">
<property name="label">00:00</property>
<style>
<class name="clock-display"/>
</style>
<property name="xalign">1</property>
</object>
</child>
</object>
</child>
<!-- Top Bar: Title, Date & Clock -->
<child>
<object class="GtkBox">
<property name="orientation">0</property>
<property name="valign">3</property>
<child>
<object class="GtkLabel" id="app_title_label">
<property name="label">Launcher Dashboard</property>
<style>
<class name="title-1"/>
</style>
<property name="hexpand">true</property>
<property name="xalign">0</property>
</object>
</child>
<child>
<object class="GtkLabel" id="date_label">
<property name="label">Daydayday, 00/00/0000</property>
<style>
<class name="date-display"/>
</style>
<property name="xalign">1</property>
</object>
</child>
<child>
<object class="GtkLabel" id="clock_label">
<property name="label">00:00</property>
<style>
<class name="clock-display"/>
</style>
<property name="xalign">1</property>
</object>
</child>
</object>
</child>
<!-- Middle: Cards Grid/Scroller -->
<child>