Initial commit

This commit is contained in:
Ceres 2026-01-11 23:23:04 +00:00
commit f94fd70f07
Signed by: ceres-sees-all
GPG key ID: 9814758436430045
151 changed files with 7650 additions and 0 deletions

View file

@ -0,0 +1,33 @@
import Quickshell
import Quickshell.Wayland
import Quickshell.Io
import Quickshell.Widgets
import QtQuick
import QtQuick.Layouts
import QtQuick.Controls
import "../Config"
ShellRoot{
id: widgets
property var open: false
Battery {
visible: open ? true : false
height: open ? 80 : 0
}
Clock {
visible: open ? true : false
height: open ? 80 : 0
}
IpcHandler {
target: "widgets"
function toggle() {
widgets.open = !widgets.open
}
}
}