diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-04-26 22:36:46 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-04-26 22:36:46 +1000 |
| commit | c2e78cc11c02db05a8d0a4680e715de8691b516a (patch) | |
| tree | 5571d22dc11d9f5cf2de4932c822d368eebc2fb1 /modules/bar/OsIcon.qml | |
| parent | clean (diff) | |
| download | caelestia-shell-c2e78cc11c02db05a8d0a4680e715de8691b516a.tar.gz caelestia-shell-c2e78cc11c02db05a8d0a4680e715de8691b516a.tar.bz2 caelestia-shell-c2e78cc11c02db05a8d0a4680e715de8691b516a.zip | |
feat: basic quickshell bar
Diffstat (limited to 'modules/bar/OsIcon.qml')
| -rw-r--r-- | modules/bar/OsIcon.qml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/modules/bar/OsIcon.qml b/modules/bar/OsIcon.qml new file mode 100644 index 0000000..1737814 --- /dev/null +++ b/modules/bar/OsIcon.qml @@ -0,0 +1,15 @@ +import "root:/widgets" +import "root:/services" +import "root:/utils" +import "root:/config" +import QtQuick +import QtQuick.Layouts + +Text { + Layout.alignment: Qt.AlignCenter + + text: Icons.osIcon + font.pointSize: Appearance.font.size.smaller + font.family: Appearance.font.family.mono + color: Appearance.colours.yellow +} |