feat: add current playing song display
This commit is contained in:
parent
d94cc5573c
commit
37cc9423d7
5 changed files with 108 additions and 30 deletions
14
flake.lock
generated
14
flake.lock
generated
|
@ -2,11 +2,11 @@
|
||||||
"nodes": {
|
"nodes": {
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1726755586,
|
"lastModified": 1727122398,
|
||||||
"narHash": "sha256-PmUr/2GQGvFTIJ6/Tvsins7Q43KTMvMFhvG6oaYK+Wk=",
|
"narHash": "sha256-o8VBeCWHBxGd4kVMceIayf5GApqTavJbTa44Xcg5Rrk=",
|
||||||
"owner": "nixos",
|
"owner": "nixos",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "c04d5652cfa9742b1d519688f65d1bbccea9eb7e",
|
"rev": "30439d93eb8b19861ccbe3e581abf97bdc91b093",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
@ -23,11 +23,11 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1726641881,
|
"lastModified": 1727391151,
|
||||||
"narHash": "sha256-ee2YIeFbYhm/gGs26grUW37BxqqDoFNElW1Vy5PIuHA=",
|
"narHash": "sha256-PIEJfHzze4MWwaS7Py+az0IL7A+bZd4pFTE/uAy1b70=",
|
||||||
"ref": "refs/heads/master",
|
"ref": "refs/heads/master",
|
||||||
"rev": "7f9762be5368ca33b84e7b2b3e23a626d432436d",
|
"rev": "3ed39b2a798419a168e5c79a2db9f7ee20de70fa",
|
||||||
"revCount": 348,
|
"revCount": 352,
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://git.outfoxxed.me/outfoxxed/quickshell"
|
"url": "https://git.outfoxxed.me/outfoxxed/quickshell"
|
||||||
},
|
},
|
||||||
|
|
|
@ -41,6 +41,7 @@ RowLayout {
|
||||||
const app = root.node.isStream ? `[${root.node.properties["application.name"]}] ` : "";
|
const app = root.node.isStream ? `[${root.node.properties["application.name"]}] ` : "";
|
||||||
return app + (root.node.properties["media.name"] ?? root.node.description);
|
return app + (root.node.properties["media.name"] ?? root.node.description);
|
||||||
}
|
}
|
||||||
|
color: "white"
|
||||||
// Cede space to other elements -> don't have stupidly long names destroying the layout
|
// Cede space to other elements -> don't have stupidly long names destroying the layout
|
||||||
Layout.maximumWidth: 0
|
Layout.maximumWidth: 0
|
||||||
}
|
}
|
||||||
|
@ -64,27 +65,13 @@ RowLayout {
|
||||||
}
|
}
|
||||||
onClicked: root.node.audio.muted = !root.node.audio.muted
|
onClicked: root.node.audio.muted = !root.node.audio.muted
|
||||||
}
|
}
|
||||||
|
|
||||||
Button {
|
|
||||||
property bool isDefault: root.node?.id === Pipewire.defaultAudioSink?.id
|
|
||||||
checked: isDefault
|
|
||||||
checkable: false
|
|
||||||
visible: root.node.isSink
|
|
||||||
text: isDefault ? "default" : "not default"
|
|
||||||
|
|
||||||
onClicked: makeDefault.running = true
|
|
||||||
|
|
||||||
Process {
|
|
||||||
id: makeDefault
|
|
||||||
command: ["pactl", "set-default-sink", root.node?.name]
|
|
||||||
running: false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
RowLayout {
|
RowLayout {
|
||||||
Label {
|
Label {
|
||||||
Layout.preferredWidth: 50
|
Layout.preferredWidth: 50
|
||||||
text: `${Math.floor(root.node.audio.volume * 100)}%`
|
text: `${Math.floor(root.node.audio.volume * 100)}%`
|
||||||
|
color: "white"
|
||||||
}
|
}
|
||||||
|
|
||||||
Slider {
|
Slider {
|
||||||
|
|
|
@ -3,41 +3,81 @@ import Quickshell.Services.Pipewire
|
||||||
import QtQuick
|
import QtQuick
|
||||||
import QtQuick.Layouts
|
import QtQuick.Layouts
|
||||||
import QtQuick.Controls
|
import QtQuick.Controls
|
||||||
|
import Quickshell.Services.Mpris
|
||||||
import "root:base"
|
import "root:base"
|
||||||
|
import QtQuick.Effects
|
||||||
|
|
||||||
PopupWindow {
|
PopupWindow {
|
||||||
|
id: audioman
|
||||||
anchor {
|
anchor {
|
||||||
rect.x: lbar.width * 1.2
|
rect.x: lbar.width * 1.2
|
||||||
rect.y: lbar.width * 0.2
|
rect.y: lbar.width * 0.2
|
||||||
window: lbar
|
window: lbar
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//gravity: Edges.Bottom | Edges.Right
|
||||||
|
|
||||||
color: "transparent"
|
color: "transparent"
|
||||||
width: 500
|
width: 500
|
||||||
height: 300
|
height: 600
|
||||||
visible: false
|
visible: false
|
||||||
|
|
||||||
|
property var player: Mpris.players.values.find(p => p.playbackState == MprisPlaybackState.Playing) ?? Mpris.players.values[0]
|
||||||
|
|
||||||
BRectangle {
|
BRectangle {
|
||||||
|
id: bn
|
||||||
|
|
||||||
|
//color: "transparent"
|
||||||
|
|
||||||
|
Image {
|
||||||
|
id: background
|
||||||
|
//anchors.margins: parent.border.width
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
|
source: audioman.player?.trackArtUrl
|
||||||
|
Layout.alignment: Qt.AlignHCenter
|
||||||
|
visible: true
|
||||||
|
}
|
||||||
|
|
||||||
|
MultiEffect {
|
||||||
|
autoPaddingEnabled: false
|
||||||
|
source: background
|
||||||
|
anchors.fill: background
|
||||||
|
blurEnabled: true
|
||||||
|
blurMax: 64
|
||||||
|
blurMultiplier: 2
|
||||||
|
blur: 1
|
||||||
|
brightness: -0.15
|
||||||
|
}
|
||||||
|
|
||||||
ScrollView {
|
ScrollView {
|
||||||
|
id: test
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
contentWidth: availableWidth
|
contentWidth: availableWidth
|
||||||
|
|
||||||
ColumnLayout {
|
ColumnLayout {
|
||||||
|
id: p
|
||||||
// BUG: We access nodes before they are initialized
|
// BUG: We access nodes before they are initialized
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
anchors.margins: 10
|
anchors.margins: 10
|
||||||
|
|
||||||
Repeater {
|
ColumnLayout {
|
||||||
model: Pipewire.nodes.values.filter(e => e.isSink)
|
Layout.alignment: Qt.AlignHCenter
|
||||||
|
Label {
|
||||||
|
text: audioman.player.trackTitle
|
||||||
|
Layout.alignment: Qt.AlignHCenter
|
||||||
|
color: "white"
|
||||||
|
}
|
||||||
|
|
||||||
AudioEntry {
|
Image {
|
||||||
required property PwNode modelData
|
source: audioman.player.trackArtUrl
|
||||||
node: modelData
|
sourceSize.width: 300
|
||||||
|
sourceSize.height: 300
|
||||||
|
Layout.alignment: Qt.AlignHCenter
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
OutputSelector {}
|
||||||
|
|
||||||
Rectangle {
|
Rectangle {
|
||||||
height: 2
|
height: 2
|
||||||
color: "black"
|
color: "black"
|
||||||
|
|
12
src/windows/audioman/OutputElem.qml
Normal file
12
src/windows/audioman/OutputElem.qml
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
import QtQuick
|
||||||
|
import Quickshell.Services.Pipewire
|
||||||
|
|
||||||
|
Item {
|
||||||
|
id: root
|
||||||
|
required property PwNode node
|
||||||
|
property string name: root.node.properties["media.name"] ?? root.node.description
|
||||||
|
|
||||||
|
PwObjectTracker {
|
||||||
|
objects: [root.node]
|
||||||
|
}
|
||||||
|
}
|
39
src/windows/audioman/OutputSelector.qml
Normal file
39
src/windows/audioman/OutputSelector.qml
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
import QtQuick.Layouts
|
||||||
|
import QtQuick.Controls
|
||||||
|
import Quickshell.Io
|
||||||
|
import Quickshell.Services.Pipewire
|
||||||
|
|
||||||
|
ColumnLayout {
|
||||||
|
ComboBox {
|
||||||
|
id: select
|
||||||
|
property var creator: Qt.createComponent("OutputElem.qml")
|
||||||
|
property var currentNode: select.model[select.currentIndex]
|
||||||
|
|
||||||
|
Layout.fillWidth: true
|
||||||
|
textRole: "name"
|
||||||
|
model: Pipewire.nodes.values.filter(e => e.isSink && !e.isStream).map(m => {
|
||||||
|
return creator.createObject(select, {
|
||||||
|
node: m
|
||||||
|
});
|
||||||
|
})
|
||||||
|
|
||||||
|
onActivated: i => {
|
||||||
|
Pipewire.preferredDefaultAudioSink = model[i].node;
|
||||||
|
//makeDefault.running = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
currentIndex: select.model.findIndex(e => e?.node?.id == Pipewire.defaultAudioSink?.id)
|
||||||
|
|
||||||
|
Process {
|
||||||
|
id: makeDefault
|
||||||
|
command: ["pactl", "set-default-sink", select.model[select.currentIndex]?.node?.name]
|
||||||
|
running: false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Slider {
|
||||||
|
Layout.fillWidth: true
|
||||||
|
value: select.model[select.currentIndex]?.node.audio.volume ?? 0
|
||||||
|
onValueChanged: select.model[select.currentIndex].node.audio.volume = value
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue