13 lines
236 B
QML
13 lines
236 B
QML
|
|
import Quickshell
|
||
|
|
import QtQuick
|
||
|
|
import Quickshell.Io
|
||
|
|
import "../../settings/"
|
||
|
|
|
||
|
|
IpcHandler {
|
||
|
|
id: ipcHandler
|
||
|
|
target: "settings"
|
||
|
|
function setWall(newWall: string): void {
|
||
|
|
Settings.config.currentWall = newWall;
|
||
|
|
}
|
||
|
|
}
|