2026-03-08 14:20:18 +01:00
|
|
|
import Quickshell
|
2026-03-19 11:32:23 +01:00
|
|
|
import QtQuick
|
2026-03-08 14:20:18 +01:00
|
|
|
import Quickshell.Io
|
|
|
|
|
import qs
|
2026-03-19 11:32:23 +01:00
|
|
|
import qs.settings
|
2026-03-08 14:20:18 +01:00
|
|
|
|
2026-03-19 11:32:23 +01:00
|
|
|
Item {
|
|
|
|
|
IpcHandler {
|
|
|
|
|
target: "colors"
|
|
|
|
|
function reload() {
|
|
|
|
|
ThemeLoader.reload();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
IpcHandler {
|
|
|
|
|
target: "settings"
|
|
|
|
|
function toggleWall() {
|
|
|
|
|
Settings.config.wallswitchershown = !Settings.config.wallswitchershown;
|
|
|
|
|
}
|
|
|
|
|
}
|
2026-03-08 14:20:18 +01:00
|
|
|
}
|