mirror of
https://github.com/noctalia-dev/noctalia-shell.git
synced 2026-05-11 17:08:27 +08:00
133 lines
3.6 KiB
QML
133 lines
3.6 KiB
QML
pragma Singleton
|
|
|
|
import QtQuick
|
|
import Quickshell
|
|
import Quickshell.Services.UPower
|
|
import qs.Commons
|
|
import qs.Services.UI
|
|
|
|
Singleton {
|
|
id: root
|
|
|
|
readonly property var powerProfiles: PowerProfiles
|
|
readonly property bool available: powerProfiles && powerProfiles.hasPerformanceProfile
|
|
property int profile: powerProfiles ? powerProfiles.profile : PowerProfile.Balanced
|
|
|
|
// Not a power profile but a volatile property to quickly disable shadows, animations, etc..
|
|
property bool noctaliaPerformanceMode: false
|
|
|
|
function getName(p) {
|
|
if (!available)
|
|
return "Unknown";
|
|
|
|
const prof = (p !== undefined) ? p : profile;
|
|
|
|
switch (prof) {
|
|
case PowerProfile.Performance:
|
|
return "Performance";
|
|
case PowerProfile.Balanced:
|
|
return "Balanced";
|
|
case PowerProfile.PowerSaver:
|
|
return "Power saver";
|
|
default:
|
|
return "Unknown";
|
|
}
|
|
}
|
|
|
|
function getIcon(p) {
|
|
if (!available)
|
|
return "balanced";
|
|
|
|
const prof = (p !== undefined) ? p : profile;
|
|
|
|
switch (prof) {
|
|
case PowerProfile.Performance:
|
|
return "performance";
|
|
case PowerProfile.Balanced:
|
|
return "balanced";
|
|
case PowerProfile.PowerSaver:
|
|
return "powersaver";
|
|
default:
|
|
return "balanced";
|
|
}
|
|
}
|
|
|
|
function init() {
|
|
Logger.d("PowerProfileService", "Service started");
|
|
}
|
|
|
|
function setProfile(p) {
|
|
if (!available)
|
|
return;
|
|
try {
|
|
powerProfiles.profile = p;
|
|
} catch (e) {
|
|
Logger.e("PowerProfileService", "Failed to set profile:", e);
|
|
}
|
|
}
|
|
|
|
function cycleProfile() {
|
|
if (!available)
|
|
return;
|
|
const current = powerProfiles.profile;
|
|
if (current === PowerProfile.Performance)
|
|
setProfile(PowerProfile.PowerSaver);
|
|
else if (current === PowerProfile.Balanced)
|
|
setProfile(PowerProfile.Performance);
|
|
else if (current === PowerProfile.PowerSaver)
|
|
setProfile(PowerProfile.Balanced);
|
|
}
|
|
|
|
function cycleProfileReverse() {
|
|
if (!available)
|
|
return;
|
|
const current = powerProfiles.profile;
|
|
if (current === PowerProfile.Performance)
|
|
setProfile(PowerProfile.Balanced);
|
|
else if (current === PowerProfile.Balanced)
|
|
setProfile(PowerProfile.PowerSaver);
|
|
else if (current === PowerProfile.PowerSaver)
|
|
setProfile(PowerProfile.Performance);
|
|
}
|
|
|
|
function isDefault() {
|
|
if (!available)
|
|
return true;
|
|
return (profile === PowerProfile.Balanced);
|
|
}
|
|
|
|
Connections {
|
|
target: powerProfiles
|
|
function onProfileChanged() {
|
|
root.profile = powerProfiles.profile;
|
|
// Only show toast if we have a valid profile name (not "Unknown")
|
|
const profileName = root.getName();
|
|
if (profileName !== "Unknown") {
|
|
ToastService.showNotice(I18n.tr("toast.power-profile.profile-name", {
|
|
"profile": profileName
|
|
}), I18n.tr("toast.power-profile.changed"), profileName.toLowerCase().replace(" ", ""));
|
|
}
|
|
}
|
|
}
|
|
|
|
// Noctalia Performance Mode
|
|
// - Turning shadow off
|
|
// - Turning animation off
|
|
// - Do Not Disturb
|
|
function toggleNoctaliaPerformance() {
|
|
noctaliaPerformanceMode = !noctaliaPerformanceMode;
|
|
}
|
|
|
|
function setNoctaliaPerformance(value) {
|
|
noctaliaPerformanceMode = value;
|
|
}
|
|
|
|
onNoctaliaPerformanceModeChanged: {
|
|
if (noctaliaPerformanceMode) {
|
|
ToastService.showNotice(I18n.tr("toast.noctalia-performance.label"), I18n.tr("toast.noctalia-performance.enabled"), "rocket");
|
|
} else {
|
|
ToastService.showNotice(I18n.tr("toast.noctalia-performance.label"), I18n.tr("toast.noctalia-performance.disabled"), "rocket-off");
|
|
}
|
|
}
|
|
}
|