diff --git a/flake.nix b/flake.nix index b2d135b..5a8e517 100644 --- a/flake.nix +++ b/flake.nix @@ -25,6 +25,11 @@ quickshell pkgs.kdePackages.qtdeclarative ]; + shellHook = '' + # Required for qmlls to find the correct type declarations + # Sadly Quickshell doesn't export some types declaratively + export QMLLS_BUILD_DIRS=${pkgs.kdePackages.qtdeclarative}/lib/qt-6/qml/:${quickshell}/lib/qt-6/qml/ + ''; }; defaultPackage = import ./nix/package.nix { inherit (pkgs) stdenv; diff --git a/src/AudioOutput.qml b/src/AudioOutput.qml index 1d1acbb..6361a64 100644 --- a/src/AudioOutput.qml +++ b/src/AudioOutput.qml @@ -1,5 +1,4 @@ import QtQuick -import QtQuick.Layouts import QtQuick.Controls import Quickshell import Quickshell.Services.Pipewire @@ -12,20 +11,20 @@ import "base" // - mute sinks & sources BRectangle { - id: aoutput + id: audiow height: (icon.height + slider.height) * 1.5 property PwNode sink: Pipewire.defaultAudioSink PwObjectTracker { - objects: [sink] + objects: [audiow.sink] } required property var popupAnchor AudioManager { id: audioman - anchor.window: popupAnchor + anchor.window: audiow.popupAnchor } MouseArea { @@ -38,7 +37,7 @@ BRectangle { } onWheel: wheel => { - const newVal = sink.audio.volume + (wheel.angleDelta.y / 12000); + const newVal = audiow.sink.audio.volume + (wheel.angleDelta.y / 12000); sink.audio.volume = newVal < 1.0 ? (newVal > 0 ? newVal : 0.0) : 1.0; } @@ -66,7 +65,7 @@ BRectangle { height: background.height width: parent.width * 0.75 enabled: false - value: sink?.audio.volume ?? 0 + value: audiow.sink?.audio.volume ?? 0 stepSize: 0.01 contentItem: Rectangle { diff --git a/src/Bar.qml b/src/Bar.qml index a0c48ae..5a473de 100644 --- a/src/Bar.qml +++ b/src/Bar.qml @@ -1,7 +1,5 @@ import Quickshell // for ShellRoot and PanelWindow import QtQuick // for Text -import Quickshell.Io // for process -import "windows" import QtQuick.Layouts import "widgets/systray" import "widgets/workspaces" diff --git a/src/ClockWidget.qml b/src/ClockWidget.qml index 1ab2db8..62af52d 100644 --- a/src/ClockWidget.qml +++ b/src/ClockWidget.qml @@ -1,5 +1,4 @@ import QtQuick -import QtQuick.Layouts import "provider" import "base" diff --git a/src/provider/Time.qml b/src/provider/Time.qml index 80960f5..5d80b04 100644 --- a/src/provider/Time.qml +++ b/src/provider/Time.qml @@ -1,7 +1,6 @@ pragma Singleton import Quickshell -import Quickshell.Io import QtQuick Singleton { @@ -12,6 +11,8 @@ Singleton { interval: 1000 running: true repeat: true - onTriggered: date = new Date() + onTriggered: { + parent.date = new Date(); + } } } diff --git a/src/widgets/systray/SysTrayItem.qml b/src/widgets/systray/SysTrayItem.qml index f578fb0..68e3a7f 100644 --- a/src/widgets/systray/SysTrayItem.qml +++ b/src/widgets/systray/SysTrayItem.qml @@ -1,9 +1,9 @@ import Quickshell.Services.SystemTray import QtQuick import QtQuick.Layouts -import Quickshell MouseArea { + id: root required property SystemTrayItem item Layout.fillWidth: true Layout.preferredHeight: parent.width @@ -29,7 +29,7 @@ MouseArea { width: parent.width Image { - source: item.icon + source: root.item.icon width: parent.width height: parent.height