chore: add some qmllsp recommendations
This commit is contained in:
parent
9898fee90f
commit
88a6eaf742
6 changed files with 15 additions and 13 deletions
|
@ -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;
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
import QtQuick
|
||||
import QtQuick.Layouts
|
||||
import "provider"
|
||||
import "base"
|
||||
|
||||
|
|
|
@ -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();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue