From 22dd2bf75c09fcae581d00e0f23abcf4fb26ad48 Mon Sep 17 00:00:00 2001 From: LemmyCook Date: Tue, 9 Sep 2025 18:30:44 -0400 Subject: [PATCH] All power icons --- Commons/IconsSets/TablerIcons.qml | 13 ++++++++++--- Modules/LockScreen/LockScreen.qml | 6 +++--- Modules/PowerPanel/PowerPanel.qml | 10 +++++----- 3 files changed, 18 insertions(+), 11 deletions(-) diff --git a/Commons/IconsSets/TablerIcons.qml b/Commons/IconsSets/TablerIcons.qml index 5364b4c..07ee45f 100644 --- a/Commons/IconsSets/TablerIcons.qml +++ b/Commons/IconsSets/TablerIcons.qml @@ -12,14 +12,16 @@ Singleton { "close": "x", "check": "check", "settings": "settings", + "refresh": "refresh", "add": "plus", "circle-check": "circle-check", "exclamation-circle": "exclamation-circle", + "stop": "player-stop-filled", "media-pause": "player-pause", "media-play": "player-play", "media-prev": "player-track-prev", "media-next": "player-track-next", - "refresh": "refresh", + "cpu-usage": "brand-speedtest", "cpu-temperature": "flame", "memory": "cpu", @@ -29,11 +31,16 @@ Singleton { "download-speed": "download", "upload-speed": "upload", "storage": "device-floppy", - "ethernet": "network", "keyboard": "keyboard", - "power": "power", + + "shutdown": "power", "lock": "lock", + "logout": "logout", + "reboot": "refresh", + "suspend": "player-pause-filled", + + "wifi-0": "wifi-0", "wifi-1": "wifi-1", "wifi-2": "wifi-2", diff --git a/Modules/LockScreen/LockScreen.qml b/Modules/LockScreen/LockScreen.qml index ce9fe08..2c1c956 100644 --- a/Modules/LockScreen/LockScreen.qml +++ b/Modules/LockScreen/LockScreen.qml @@ -730,7 +730,7 @@ Loader { NIcon { id: iconPower anchors.centerIn: parent - icon: "power" + icon: "shutdown" font.pointSize: Style.fontSizeXXXL * scaling color: powerButtonArea.containsMouse ? Color.mOnError : Color.mError } @@ -781,7 +781,7 @@ Loader { NIcon { id: iconReboot anchors.centerIn: parent - icon: "refresh" + icon: "reboot" font.pointSize: Style.fontSizeXXXL * scaling color: restartButtonArea.containsMouse ? Color.mOnPrimary : Color.mPrimary } @@ -833,7 +833,7 @@ Loader { NIcon { id: iconSuspend anchors.centerIn: parent - icon: "pause-fill" + icon: "suspend" font.pointSize: Style.fontSizeXXXL * scaling color: suspendButtonArea.containsMouse ? Color.mOnSecondary : Color.mSecondary } diff --git a/Modules/PowerPanel/PowerPanel.qml b/Modules/PowerPanel/PowerPanel.qml index 0b2c0a9..b9380fb 100644 --- a/Modules/PowerPanel/PowerPanel.qml +++ b/Modules/PowerPanel/PowerPanel.qml @@ -34,22 +34,22 @@ NPanel { "subtitle": "Lock your session" }, { "action": "suspend", - "icon": "pause-circle", + "icon": "suspend", "title": "Suspend", "subtitle": "Put the system to sleep" }, { "action": "reboot", - "icon": "refresh", + "icon": "reboot", "title": "Reboot", "subtitle": "Restart the system" }, { "action": "logout", - "icon": "escape", + "icon": "logout", "title": "Logout", "subtitle": "End your session" }, { "action": "shutdown", - "icon": "power", + "icon": "shutdown", "title": "Shutdown", "subtitle": "Turn off the system", "isShutdown": true @@ -276,7 +276,7 @@ NPanel { } NIconButton { - icon: timerActive ? "x-square" : "close" + icon: timerActive ? "stop" : "close" tooltipText: timerActive ? "Cancel Timer" : "Close" Layout.alignment: Qt.AlignVCenter colorBg: timerActive ? Qt.alpha(Color.mError, 0.08) : Color.transparent