2026-03-19 11:32:23 +01:00

21 lines
389 B
QML

import Quickshell
import QtQuick
import Quickshell.Io
import qs
import qs.settings
Item {
IpcHandler {
target: "colors"
function reload() {
ThemeLoader.reload();
}
}
IpcHandler {
target: "settings"
function toggleWall() {
Settings.config.wallswitchershown = !Settings.config.wallswitchershown;
}
}
}