Files
nixos-config/home/common/programs/hyprland/quickshell/ClockWidget.qml
T
Miguel Palhas e8086e8528 Several hyprland updates:
plugins, new cursor, light/dark themes, new app launcher, ...
2026-02-16 17:33:40 +00:00

21 lines
300 B
QML

import QtQuick
import QtQuick.Layouts
RowLayout {
spacing: 12
Text {
text: Time.date
font.family: "FiraCode Nerd Font"
font.pixelSize: 13
color: "#6c7086"
}
Text {
text: Time.clock
font.family: "FiraCode Nerd Font"
font.pixelSize: 14
color: "#bac2de"
}
}