This is a projection, not a development branch. The tree above was constructed from the internal source named below under a manifest that decides which paths may leave, then scanned as a whole tree rather than as a series of patches, and only then published. Public history starts here because the history before it was not admissible, and neither was the tree. What used to stand in this repository included a rescue copy of another machine, a directory of phone handoffs, deployment wired to one house, and a submodule pointing at a forge no stranger can reach. None of that was ever the product. It stays in the private forge, which is allowed to hold the whole working organism, and this is what was deliberately sent out instead. Three mechanisms produced this tree, in decreasing order of trust. A top-level path the manifest does not name never arrives at all, which is the one that catches directories nobody has thought of yet. Named internal files inside admitted roots are dropped. A short, reviewed table replaces deployment defaults that a public build must not carry -- an endpoint aimed at one LAN, a VPN profile belonging to one phone, packaging built from one checkout path. Everything after this commit is an ordinary publication with the same three trailers, so a force push stops being routine and starts meaning that something deliberate happened. The trailers bind the projection to its source without pretending the public SHA is the private one: same lineage, different tree, and the record says so. Source-Sha: 8f27b1e76a8fef560a336aba18e6990713ff1047 Policy-Sha: 6b261d2f3e6e1fb19874846ba4bb1dfe15565d25b8618c1c1afba0419c101d27 Tree-Digest: 18ec3563c5e5ef9a414993a9f6734b251ff9ed3cd56eebdd6cac01e45c6e3067
172 lines
No EOL
5.5 KiB
QML
172 lines
No EOL
5.5 KiB
QML
pragma Singleton
|
|
|
|
import QtQuick
|
|
import qs.modules.common
|
|
import Quickshell
|
|
import Quickshell.Io
|
|
import Quickshell.Hyprland
|
|
|
|
/**
|
|
* Simple hyprsunset service with automatic mode.
|
|
* In theory we don't need this because hyprsunset has a config file, but it somehow doesn't work.
|
|
* It should also be possible to control it via hyprctl, but it doesn't work consistently either so we're just killing and launching.
|
|
*/
|
|
Singleton {
|
|
id: root
|
|
signal gammaChangeAttempt()
|
|
|
|
readonly property real gammaLowerLimit: 25
|
|
|
|
property string from: Config.options?.light?.night?.from ?? "19:00"
|
|
property string to: Config.options?.light?.night?.to ?? "06:30"
|
|
property bool automatic: Config.options?.light?.night?.automatic && (Config?.ready ?? true)
|
|
property int colorTemperature: Config.options?.light?.night?.colorTemperature ?? 5000
|
|
property int defaultColorTemperature: 6000
|
|
property int gamma: 100
|
|
property bool shouldBeOn
|
|
property bool firstEvaluation: true
|
|
property bool temperatureActive: false
|
|
|
|
property int fromHour: Number(from.split(":")[0])
|
|
property int fromMinute: Number(from.split(":")[1])
|
|
property int toHour: Number(to.split(":")[0])
|
|
property int toMinute: Number(to.split(":")[1])
|
|
|
|
property int clockHour: DateTime.clock.hours
|
|
property int clockMinute: DateTime.clock.minutes
|
|
|
|
property var manualActive
|
|
property int manualActiveHour
|
|
property int manualActiveMinute
|
|
|
|
onClockMinuteChanged: reEvaluate()
|
|
onAutomaticChanged: {
|
|
root.manualActive = undefined;
|
|
root.firstEvaluation = true;
|
|
reEvaluate();
|
|
}
|
|
|
|
function inBetween(t, from, to) {
|
|
if (from < to) {
|
|
return (t >= from && t <= to);
|
|
} else {
|
|
// Wrapped around midnight
|
|
return (t >= from || t <= to);
|
|
}
|
|
}
|
|
|
|
function reEvaluate() {
|
|
const t = clockHour * 60 + clockMinute;
|
|
const from = fromHour * 60 + fromMinute;
|
|
const to = toHour * 60 + toMinute;
|
|
const manualActive = manualActiveHour * 60 + manualActiveMinute;
|
|
|
|
if (root.manualActive !== undefined && (inBetween(from, manualActive, t) || inBetween(to, manualActive, t))) {
|
|
root.manualActive = undefined;
|
|
}
|
|
root.shouldBeOn = inBetween(t, from, to);
|
|
if (firstEvaluation) {
|
|
firstEvaluation = false;
|
|
root.ensureState();
|
|
}
|
|
}
|
|
|
|
onShouldBeOnChanged: ensureState()
|
|
function ensureState() {
|
|
// console.log("[Hyprsunset] Ensuring state:", root.shouldBeOn, "Automatic mode:", root.automatic);
|
|
if (!root.automatic || root.manualActive !== undefined)
|
|
return;
|
|
if (root.shouldBeOn) {
|
|
root.enableTemperature();
|
|
} else {
|
|
root.disableTemperature();
|
|
}
|
|
}
|
|
|
|
function startHyprsunset() {
|
|
Quickshell.execDetached(["bash", "-c", `pidof hyprsunset || hyprsunset`]);
|
|
}
|
|
|
|
function load() {
|
|
root.startHyprsunset();
|
|
root.ensureState();
|
|
}
|
|
|
|
Timer {
|
|
id: updateHyprsunset
|
|
interval: 100
|
|
repeat: false
|
|
onTriggered: {
|
|
root.ensureState();
|
|
root.setGamma(root.gamma);
|
|
}
|
|
}
|
|
|
|
function enableTemperature() {
|
|
root.temperatureActive = true;
|
|
|
|
// console.log("[Hyprsunset] Enabling");
|
|
root.startHyprsunset();
|
|
Quickshell.execDetached(["bash", "-c", `hyprctl hyprsunset temperature ${root.colorTemperature}`]);
|
|
}
|
|
|
|
function disableTemperature() {
|
|
root.temperatureActive = false;
|
|
// console.log("[Hyprsunset] Disabling");
|
|
Quickshell.execDetached(["bash", "-c", `hyprctl hyprsunset temperature ${root.defaultColorTemperature}`]);
|
|
}
|
|
|
|
function setGamma(gamma) {
|
|
root.gamma = Math.max(root.gammaLowerLimit, Math.min(100, gamma));
|
|
|
|
root.gammaChangeAttempt();
|
|
|
|
root.startHyprsunset();
|
|
Quickshell.execDetached(["bash", "-c", `hyprctl hyprsunset gamma ${root.gamma}`]);
|
|
}
|
|
|
|
function fetchState() {
|
|
fetchProc.running = true;
|
|
}
|
|
|
|
Process {
|
|
id: fetchProc
|
|
running: true
|
|
command: ["bash", "-c", "hyprctl hyprsunset temperature"]
|
|
stdout: StdioCollector {
|
|
id: stateCollector
|
|
onStreamFinished: {
|
|
const output = stateCollector.text.trim();
|
|
if (output.length == 0 || output.startsWith("Couldn't"))
|
|
root.temperatureActive = false;
|
|
else
|
|
root.temperatureActive = (output != root.defaultColorTemperature); // 6000 is the default when off
|
|
// console.log("[Hyprsunset] Fetched state:", output, "->", root.temperatureActive);
|
|
}
|
|
}
|
|
}
|
|
|
|
function toggleTemperature(active = undefined) {
|
|
if (root.manualActive === undefined) {
|
|
root.manualActive = root.temperatureActive;
|
|
root.manualActiveHour = root.clockHour;
|
|
root.manualActiveMinute = root.clockMinute;
|
|
}
|
|
|
|
root.manualActive = active !== undefined ? active : !root.manualActive;
|
|
if (root.manualActive) {
|
|
root.enableTemperature();
|
|
} else {
|
|
root.disableTemperature();
|
|
}
|
|
}
|
|
|
|
// Change temp
|
|
Connections {
|
|
target: Config.options.light.night
|
|
function onColorTemperatureChanged() {
|
|
if (!root.temperatureActive) return;
|
|
Quickshell.execDetached(["hyprctl", "hyprsunset", "temperature", `${Config.options.light.night.colorTemperature}`]);
|
|
}
|
|
}
|
|
} |