This commit is contained in:
2026-04-09 11:16:48 -05:00
parent 76a5bf5917
commit f4b032e96f
23 changed files with 274 additions and 160 deletions

View File

@@ -5,6 +5,7 @@ import Quickshell.Io
import Quickshell.Widgets
WrapperMouseArea {
ClippingWrapperRectangle {
radius: 3
implicitWidth: 30; implicitHeight: 30
@@ -15,22 +16,16 @@ WrapperMouseArea {
text: " "
font.pointSize: 16
color: Pywal.special.foreground
color: Settings.special.foreground
}
color: {
containsMouse
? Pywal.colors.color12
: Pywal.colors.color1
? Settings.colors.color12
: Settings.colors.color1
}
}
hoverEnabled: true
Process {
id: launcher
running: false
command: ["rofi", "-show", "drun", "-show-icons" ]
}
onClicked: launcher.running = true
onClicked: Settings.launcherOpen = true
}