Not actually used at the moment

This commit is contained in:
David Heinemeier Hansson
2026-05-19 20:54:20 +02:00
parent bad94996ac
commit 9d81863a63
3 changed files with 2 additions and 18 deletions
+2 -7
View File
@@ -105,13 +105,8 @@ QtObject {
shellValues = parsed
}
function reloadTheme() {
colorsFile.reload()
shellFile.reload()
}
// Startup load plus manual reloadTheme() support. Runtime theme switches
// normally push the payload explicitly through shell IPC.
// Startup load only. Runtime theme switches push the payload explicitly
// through shell IPC.
property FileView colorsFile: FileView {
id: colorsFile
path: Quickshell.env("HOME") + "/.config/omarchy/current/theme/colors.toml"
-5
View File
@@ -352,11 +352,6 @@ QtObject {
refreshTimer.restart()
}
function reloadTheme() {
shellTomlFile.reload()
scheduleRefresh()
}
function applyRoundingJson(raw) {
try {
var json = JSON.parse(raw || "{}")
-6
View File
@@ -589,12 +589,6 @@ ShellRoot {
return "ok"
}
function reloadTheme(): string {
NoctaliaCommons.Color.reloadTheme()
NoctaliaCommons.Style.reloadTheme()
return "ok"
}
function rescanPlugins(): void {
shell.pluginRegistry.rescan()
}