From 69cd0fc447fefc71df66c158a111bd71868e1683 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Sun, 18 May 2025 18:52:04 +0200 Subject: [PATCH] no more % on indicators --- .config/quickshell/modules/bar/Battery.qml | 2 +- .config/quickshell/modules/bar/Resource.qml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/quickshell/modules/bar/Battery.qml b/.config/quickshell/modules/bar/Battery.qml index e3baf548..6a50eaf0 100644 --- a/.config/quickshell/modules/bar/Battery.qml +++ b/.config/quickshell/modules/bar/Battery.qml @@ -38,7 +38,7 @@ Rectangle { StyledText { Layout.alignment: Qt.AlignVCenter color: Appearance.colors.colOnLayer1 - text: `${Math.round(percentage * 100)}%` + text: `${Math.round(percentage * 100)}` } CircularProgress { diff --git a/.config/quickshell/modules/bar/Resource.qml b/.config/quickshell/modules/bar/Resource.qml index ae2d7167..15f5fea2 100644 --- a/.config/quickshell/modules/bar/Resource.qml +++ b/.config/quickshell/modules/bar/Resource.qml @@ -38,7 +38,7 @@ Item { StyledText { Layout.alignment: Qt.AlignVCenter color: Appearance.colors.colOnLayer1 - text: `${Math.round(percentage * 100)}%` + text: `${Math.round(percentage * 100)}` } Behavior on x {