removed eww and waybar added quickshell

This commit is contained in:
samantha42
2026-05-18 08:19:40 +02:00
parent f7d6f07e3a
commit 36ee6f35da
36 changed files with 713 additions and 1657 deletions

View File

@@ -0,0 +1,19 @@
import QtQuick
import Quickshell.Io
// eww theme-widget
StatPill {
property string themeInfo: ""
text: themeInfo
clickable: true
onClicked: launchTheme("next")
onRightClicked: launchTheme("auto")
function launchTheme(mode) {
Qt.createQmlObject(
'import Quickshell.Io; Process { command: ["bash","' +
Qt.resolvedUrl("../hypr/theme-cycle.sh") +
'","' + mode + '"]; running: true }', parent)
}
}