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
|
quickshell
|
||||||
pkgs.kdePackages.qtdeclarative
|
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 {
|
defaultPackage = import ./nix/package.nix {
|
||||||
inherit (pkgs) stdenv;
|
inherit (pkgs) stdenv;
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
import QtQuick
|
import QtQuick
|
||||||
import QtQuick.Layouts
|
|
||||||
import QtQuick.Controls
|
import QtQuick.Controls
|
||||||
import Quickshell
|
import Quickshell
|
||||||
import Quickshell.Services.Pipewire
|
import Quickshell.Services.Pipewire
|
||||||
|
@ -12,20 +11,20 @@ import "base"
|
||||||
// - mute sinks & sources
|
// - mute sinks & sources
|
||||||
|
|
||||||
BRectangle {
|
BRectangle {
|
||||||
id: aoutput
|
id: audiow
|
||||||
height: (icon.height + slider.height) * 1.5
|
height: (icon.height + slider.height) * 1.5
|
||||||
|
|
||||||
property PwNode sink: Pipewire.defaultAudioSink
|
property PwNode sink: Pipewire.defaultAudioSink
|
||||||
|
|
||||||
PwObjectTracker {
|
PwObjectTracker {
|
||||||
objects: [sink]
|
objects: [audiow.sink]
|
||||||
}
|
}
|
||||||
|
|
||||||
required property var popupAnchor
|
required property var popupAnchor
|
||||||
|
|
||||||
AudioManager {
|
AudioManager {
|
||||||
id: audioman
|
id: audioman
|
||||||
anchor.window: popupAnchor
|
anchor.window: audiow.popupAnchor
|
||||||
}
|
}
|
||||||
|
|
||||||
MouseArea {
|
MouseArea {
|
||||||
|
@ -38,7 +37,7 @@ BRectangle {
|
||||||
}
|
}
|
||||||
|
|
||||||
onWheel: wheel => {
|
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;
|
sink.audio.volume = newVal < 1.0 ? (newVal > 0 ? newVal : 0.0) : 1.0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -66,7 +65,7 @@ BRectangle {
|
||||||
height: background.height
|
height: background.height
|
||||||
width: parent.width * 0.75
|
width: parent.width * 0.75
|
||||||
enabled: false
|
enabled: false
|
||||||
value: sink?.audio.volume ?? 0
|
value: audiow.sink?.audio.volume ?? 0
|
||||||
stepSize: 0.01
|
stepSize: 0.01
|
||||||
|
|
||||||
contentItem: Rectangle {
|
contentItem: Rectangle {
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
import Quickshell // for ShellRoot and PanelWindow
|
import Quickshell // for ShellRoot and PanelWindow
|
||||||
import QtQuick // for Text
|
import QtQuick // for Text
|
||||||
import Quickshell.Io // for process
|
|
||||||
import "windows"
|
|
||||||
import QtQuick.Layouts
|
import QtQuick.Layouts
|
||||||
import "widgets/systray"
|
import "widgets/systray"
|
||||||
import "widgets/workspaces"
|
import "widgets/workspaces"
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
import QtQuick
|
import QtQuick
|
||||||
import QtQuick.Layouts
|
|
||||||
import "provider"
|
import "provider"
|
||||||
import "base"
|
import "base"
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
pragma Singleton
|
pragma Singleton
|
||||||
|
|
||||||
import Quickshell
|
import Quickshell
|
||||||
import Quickshell.Io
|
|
||||||
import QtQuick
|
import QtQuick
|
||||||
|
|
||||||
Singleton {
|
Singleton {
|
||||||
|
@ -12,6 +11,8 @@ Singleton {
|
||||||
interval: 1000
|
interval: 1000
|
||||||
running: true
|
running: true
|
||||||
repeat: true
|
repeat: true
|
||||||
onTriggered: date = new Date()
|
onTriggered: {
|
||||||
|
parent.date = new Date();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
import Quickshell.Services.SystemTray
|
import Quickshell.Services.SystemTray
|
||||||
import QtQuick
|
import QtQuick
|
||||||
import QtQuick.Layouts
|
import QtQuick.Layouts
|
||||||
import Quickshell
|
|
||||||
|
|
||||||
MouseArea {
|
MouseArea {
|
||||||
|
id: root
|
||||||
required property SystemTrayItem item
|
required property SystemTrayItem item
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
Layout.preferredHeight: parent.width
|
Layout.preferredHeight: parent.width
|
||||||
|
@ -29,7 +29,7 @@ MouseArea {
|
||||||
width: parent.width
|
width: parent.width
|
||||||
|
|
||||||
Image {
|
Image {
|
||||||
source: item.icon
|
source: root.item.icon
|
||||||
|
|
||||||
width: parent.width
|
width: parent.width
|
||||||
height: parent.height
|
height: parent.height
|
||||||
|
|
Loading…
Add table
Reference in a new issue