summaryrefslogtreecommitdiff
path: root/modules/lock/Fetch.qml
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-08-11 15:59:39 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-08-11 15:59:39 +1000
commit1e1cdd95c1cb81e40c9198ab644badb348332389 (patch)
tree85bfc01b6d7bb366e57891426f57024955d8d303 /modules/lock/Fetch.qml
parentlock: better scaling for weather & fetch (diff)
downloadcaelestia-shell-1e1cdd95c1cb81e40c9198ab644badb348332389.tar.gz
caelestia-shell-1e1cdd95c1cb81e40c9198ab644badb348332389.tar.bz2
caelestia-shell-1e1cdd95c1cb81e40c9198ab644badb348332389.zip
lock/fetch: shell -> uptime + no qsTr
Diffstat (limited to 'modules/lock/Fetch.qml')
-rw-r--r--modules/lock/Fetch.qml8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/lock/Fetch.qml b/modules/lock/Fetch.qml
index fd954b1..b855cdc 100644
--- a/modules/lock/Fetch.qml
+++ b/modules/lock/Fetch.qml
@@ -87,19 +87,19 @@ ColumnLayout {
spacing: Appearance.spacing.normal
FetchText {
- text: qsTr("OS : %1").arg(SysInfo.osPrettyName || SysInfo.osName)
+ text: `OS : ${SysInfo.osPrettyName || SysInfo.osName}`
}
FetchText {
- text: qsTr("WM : %1").arg(SysInfo.wm)
+ text: `WM : ${SysInfo.wm}`
}
FetchText {
- text: qsTr("USER: %1").arg(SysInfo.user)
+ text: `USER: ${SysInfo.user}`
}
FetchText {
- text: qsTr("SH : %1").arg(SysInfo.shell)
+ text: `UP : ${SysInfo.uptime}`
}
}
}