mirror of
https://github.com/noctalia-dev/noctalia-shell.git
synced 2026-05-11 17:08:27 +08:00
204 lines
5.4 KiB
QML
204 lines
5.4 KiB
QML
pragma Singleton
|
|
|
|
import QtQuick
|
|
import Quickshell
|
|
import qs.Commons
|
|
import qs.Services.Power
|
|
import qs.Services.UI
|
|
|
|
Singleton {
|
|
id: root
|
|
|
|
// Hook connections for automatic script execution
|
|
Connections {
|
|
target: Settings.data.colorSchemes
|
|
function onDarkModeChanged() {
|
|
executeDarkModeHook(Settings.data.colorSchemes.darkMode);
|
|
}
|
|
}
|
|
|
|
Connections {
|
|
target: WallpaperService
|
|
function onWallpaperChanged(screenName, path) {
|
|
executeWallpaperHook(path, screenName);
|
|
}
|
|
}
|
|
|
|
// Track lock screen state for unlock hook
|
|
property bool wasLocked: false
|
|
|
|
Connections {
|
|
target: PanelService
|
|
function onLockScreenChanged() {
|
|
if (PanelService.lockScreen) {
|
|
lockScreenActiveConnection.target = PanelService.lockScreen;
|
|
}
|
|
}
|
|
}
|
|
|
|
Connections {
|
|
id: lockScreenActiveConnection
|
|
target: PanelService.lockScreen
|
|
function onActiveChanged() {
|
|
// Detect lock: was unlocked, now locked
|
|
if (!wasLocked && PanelService.lockScreen.active) {
|
|
executeLockHook();
|
|
}
|
|
// Detect unlock: was locked, now not locked
|
|
if (wasLocked && !PanelService.lockScreen.active) {
|
|
executeUnlockHook();
|
|
}
|
|
wasLocked = PanelService.lockScreen.active;
|
|
}
|
|
}
|
|
|
|
// Track performance mode state for hooks
|
|
property bool wasPerformanceModeEnabled: false
|
|
|
|
Connections {
|
|
target: PowerProfileService
|
|
function onNoctaliaPerformanceModeChanged() {
|
|
const isEnabled = PowerProfileService.noctaliaPerformanceMode;
|
|
|
|
// Detect enabled: was disabled, now enabled
|
|
if (!wasPerformanceModeEnabled && isEnabled) {
|
|
executePerformanceModeEnabledHook();
|
|
}
|
|
// Detect disabled: was enabled, now disabled
|
|
if (wasPerformanceModeEnabled && !isEnabled) {
|
|
executePerformanceModeDisabledHook();
|
|
}
|
|
wasPerformanceModeEnabled = isEnabled;
|
|
}
|
|
}
|
|
|
|
// Execute wallpaper change hook
|
|
function executeWallpaperHook(wallpaperPath, screenName) {
|
|
if (!Settings.data.hooks?.enabled) {
|
|
return;
|
|
}
|
|
|
|
const script = Settings.data.hooks?.wallpaperChange;
|
|
if (!script || script === "") {
|
|
return;
|
|
}
|
|
|
|
try {
|
|
let command = script.replace(/\$1/g, wallpaperPath);
|
|
command = command.replace(/\$2/g, screenName || "");
|
|
Quickshell.execDetached(["sh", "-c", command]);
|
|
Logger.d("HooksService", `Executed wallpaper hook: ${command}`);
|
|
} catch (e) {
|
|
Logger.e("HooksService", `Failed to execute wallpaper hook: ${e}`);
|
|
}
|
|
}
|
|
|
|
// Execute dark mode change hook
|
|
function executeDarkModeHook(isDarkMode) {
|
|
if (!Settings.data.hooks?.enabled) {
|
|
return;
|
|
}
|
|
|
|
const script = Settings.data.hooks?.darkModeChange;
|
|
if (!script || script === "") {
|
|
return;
|
|
}
|
|
|
|
try {
|
|
const command = script.replace(/\$1/g, isDarkMode ? "true" : "false");
|
|
Quickshell.execDetached(["sh", "-c", command]);
|
|
Logger.d("HooksService", `Executed dark mode hook: ${command}`);
|
|
} catch (e) {
|
|
Logger.e("HooksService", `Failed to execute dark mode hook: ${e}`);
|
|
}
|
|
}
|
|
|
|
// Execute screen lock hook
|
|
function executeLockHook() {
|
|
if (!Settings.data.hooks?.enabled) {
|
|
return;
|
|
}
|
|
|
|
const script = Settings.data.hooks?.screenLock;
|
|
if (!script || script === "") {
|
|
return;
|
|
}
|
|
|
|
try {
|
|
Quickshell.execDetached(["sh", "-c", script]);
|
|
Logger.d("HooksService", `Executed screen lock hook: ${script}`);
|
|
} catch (e) {
|
|
Logger.e("HooksService", `Failed to execute screen lock hook: ${e}`);
|
|
}
|
|
}
|
|
|
|
// Execute screen unlock hook
|
|
function executeUnlockHook() {
|
|
if (!Settings.data.hooks?.enabled) {
|
|
return;
|
|
}
|
|
|
|
const script = Settings.data.hooks?.screenUnlock;
|
|
if (!script || script === "") {
|
|
return;
|
|
}
|
|
|
|
try {
|
|
Quickshell.execDetached(["sh", "-c", script]);
|
|
Logger.d("HooksService", `Executed screen unlock hook: ${script}`);
|
|
} catch (e) {
|
|
Logger.e("HooksService", `Failed to execute screen unlock hook: ${e}`);
|
|
}
|
|
}
|
|
|
|
// Execute performance mode enabled hook
|
|
function executePerformanceModeEnabledHook() {
|
|
if (!Settings.data.hooks?.enabled) {
|
|
return;
|
|
}
|
|
|
|
const script = Settings.data.hooks?.performanceModeEnabled;
|
|
if (!script || script === "") {
|
|
return;
|
|
}
|
|
|
|
try {
|
|
Quickshell.execDetached(["sh", "-c", script]);
|
|
} catch (e) {
|
|
Logger.e("HooksService", `Failed to execute performance mode enabled hook: ${e}`);
|
|
}
|
|
}
|
|
|
|
// Execute performance mode disabled hook
|
|
function executePerformanceModeDisabledHook() {
|
|
if (!Settings.data.hooks?.enabled) {
|
|
return;
|
|
}
|
|
|
|
const script = Settings.data.hooks?.performanceModeDisabled;
|
|
if (!script || script === "") {
|
|
return;
|
|
}
|
|
|
|
try {
|
|
Quickshell.execDetached(["sh", "-c", script]);
|
|
} catch (e) {
|
|
Logger.e("HooksService", `Failed to execute performance mode disabled hook: ${e}`);
|
|
}
|
|
}
|
|
|
|
// Initialize the service
|
|
function init() {
|
|
Logger.i("HooksService", "Service started");
|
|
// Initialize lock screen state tracking
|
|
Qt.callLater(() => {
|
|
if (PanelService.lockScreen) {
|
|
wasLocked = PanelService.lockScreen.active;
|
|
lockScreenActiveConnection.target = PanelService.lockScreen;
|
|
}
|
|
// Initialize performance mode state tracking
|
|
wasPerformanceModeEnabled = PowerProfileService.noctaliaPerformanceMode;
|
|
});
|
|
}
|
|
}
|