diff --git a/Modules/Bar/Widgets/NotificationHistory.qml b/Modules/Bar/Widgets/NotificationHistory.qml index 8a1e8c3..ff0db05 100644 --- a/Modules/Bar/Widgets/NotificationHistory.qml +++ b/Modules/Bar/Widgets/NotificationHistory.qml @@ -15,7 +15,7 @@ NIconButton { sizeRatio: 0.8 icon: "notifications" - tooltipText: "Notification History" + tooltipText: "Notification history" colorBg: Color.mSurfaceVariant colorFg: Color.mOnSurface colorBorder: Color.transparent diff --git a/Modules/SidePanel/Cards/PowerProfilesCard.qml b/Modules/SidePanel/Cards/PowerProfilesCard.qml index 2c36642..2bdd88a 100644 --- a/Modules/SidePanel/Cards/PowerProfilesCard.qml +++ b/Modules/SidePanel/Cards/PowerProfilesCard.qml @@ -29,7 +29,7 @@ NBox { // Performance NIconButton { icon: "speed" - tooltipText: "Set Performance Power Profile" + tooltipText: "Set performance power profile" enabled: hasPP opacity: enabled ? Style.opacityFull : Style.opacityMedium colorBg: (enabled && powerProfiles.profile === PowerProfile.Performance) ? Color.mPrimary : Color.mSurfaceVariant @@ -43,7 +43,7 @@ NBox { // Balanced NIconButton { icon: "balance" - tooltipText: "Set Balanced Power Profile" + tooltipText: "Set balanced power profile" enabled: hasPP opacity: enabled ? Style.opacityFull : Style.opacityMedium colorBg: (enabled && powerProfiles.profile === PowerProfile.Balanced) ? Color.mPrimary : Color.mSurfaceVariant @@ -57,7 +57,7 @@ NBox { // Eco NIconButton { icon: "eco" - tooltipText: "Set Eco Power Profile" + tooltipText: "Set eco power profile" enabled: hasPP opacity: enabled ? Style.opacityFull : Style.opacityMedium colorBg: (enabled && powerProfiles.profile === PowerProfile.PowerSaver) ? Color.mPrimary : Color.mSurfaceVariant diff --git a/Modules/SidePanel/Cards/UtilitiesCard.qml b/Modules/SidePanel/Cards/UtilitiesCard.qml index 5770df2..5bb6a05 100644 --- a/Modules/SidePanel/Cards/UtilitiesCard.qml +++ b/Modules/SidePanel/Cards/UtilitiesCard.qml @@ -26,7 +26,7 @@ NBox { // Screen Recorder NIconButton { icon: "videocam" - tooltipText: ScreenRecorderService.isRecording ? "Stop Screen Recording" : "Start Screen Recording" + tooltipText: ScreenRecorderService.isRecording ? "Stop screen recording" : "Start screen recording" colorBg: ScreenRecorderService.isRecording ? Color.mPrimary : Color.mSurfaceVariant colorFg: ScreenRecorderService.isRecording ? Color.mOnPrimary : Color.mPrimary onClicked: { @@ -37,7 +37,7 @@ NBox { // Idle Inhibitor NIconButton { icon: "coffee" - tooltipText: IdleInhibitorService.isInhibited ? "Disable Keep Awake" : "Enable Keep Awake" + tooltipText: IdleInhibitorService.isInhibited ? "Disable keep awake" : "Enable keep awake" colorBg: IdleInhibitorService.isInhibited ? Color.mPrimary : Color.mSurfaceVariant colorFg: IdleInhibitorService.isInhibited ? Color.mOnPrimary : Color.mPrimary onClicked: {