C++ / fmt (pull_request) Failing after 4s
C++ / build (pull_request) Failing after 12s
JS/TS / fmt (pull_request) Successful in 15s
JS/TS / lint (pull_request) Successful in 15s
C++ / clang-tidy (pull_request) Failing after 33s
Python / static (pull_request) Failing after 36s
Rust / fmt (pull_request) Successful in 1m14s
Rust / build (pull_request) Successful in 1m49s
Rust / clippy (pull_request) Successful in 1m33s
Python / verify (pull_request) Successful in 2m10s
40 lines
876 B
QML
40 lines
876 B
QML
pragma Singleton
|
|
|
|
import Quickshell
|
|
import QtQuick
|
|
import ZShell.Services
|
|
import ZShell.Config
|
|
|
|
Singleton {
|
|
id: root
|
|
|
|
readonly property bool enabled: service.enabled
|
|
readonly property int end: Config.display.nightlight.scheduleEnd
|
|
property bool manualToggle: false
|
|
readonly property int start: Config.display.nightlight.scheduleStart
|
|
readonly property int temp: Config.display.nightlight.temp
|
|
|
|
function checkStartup(): void {
|
|
if (!Config.display.nightlight.schedule)
|
|
return;
|
|
|
|
service.apply();
|
|
}
|
|
|
|
function toggleNightLight(): void {
|
|
service.manualToggle = true;
|
|
service.toggle();
|
|
}
|
|
|
|
NightlightManager {
|
|
id: service
|
|
|
|
activeAuto: Config.display.nightlight.schedule
|
|
endTime: root.end
|
|
startTime: root.start
|
|
temp: root.temp
|
|
fadeDuration: Config.display.nightlight.fadeDuration / 1000
|
|
useNativeNightlight: Config.display.nightlight.useNative
|
|
}
|
|
}
|