AutoFormatting

This commit is contained in:
quadbyte 2025-08-20 21:01:41 -04:00
parent 122e95955d
commit 11463e2be4
5 changed files with 81 additions and 78 deletions

View file

@ -45,12 +45,12 @@ Row {
} }
function getAppIcon() { function getAppIcon() {
const focusedWindow = CompositorService.getFocusedWindow(); const focusedWindow = CompositorService.getFocusedWindow()
if (!focusedWindow || !focusedWindow.appId) if (!focusedWindow || !focusedWindow.appId)
return ""; return ""
let icon = Quickshell.iconPath(DesktopEntries.byId(focusedWindow.appId).icon); let icon = Quickshell.iconPath(DesktopEntries.byId(focusedWindow.appId).icon)
return icon || ""; return icon || ""
} }
// A hidden text element to safely measure the full title width // A hidden text element to safely measure the full title width

View file

@ -44,7 +44,8 @@ Row {
Loader { Loader {
anchors.verticalCenter: parent.verticalCenter anchors.verticalCenter: parent.verticalCenter
anchors.horizontalCenter: parent.horizontalCenter anchors.horizontalCenter: parent.horizontalCenter
active: Settings.data.audio.showMiniplayerCava && Settings.data.audio.visualizerType == "linear" && MediaService.isPlaying active: Settings.data.audio.showMiniplayerCava && Settings.data.audio.visualizerType == "linear"
&& MediaService.isPlaying
z: 0 z: 0
sourceComponent: LinearSpectrum { sourceComponent: LinearSpectrum {
@ -58,7 +59,8 @@ Row {
Loader { Loader {
anchors.verticalCenter: parent.verticalCenter anchors.verticalCenter: parent.verticalCenter
anchors.horizontalCenter: parent.horizontalCenter anchors.horizontalCenter: parent.horizontalCenter
active: Settings.data.audio.showMiniplayerCava && Settings.data.audio.visualizerType == "mirrored" && MediaService.isPlaying active: Settings.data.audio.showMiniplayerCava && Settings.data.audio.visualizerType == "mirrored"
&& MediaService.isPlaying
z: 0 z: 0
sourceComponent: MirroredSpectrum { sourceComponent: MirroredSpectrum {
@ -73,7 +75,8 @@ Row {
Loader { Loader {
anchors.verticalCenter: parent.verticalCenter anchors.verticalCenter: parent.verticalCenter
anchors.horizontalCenter: parent.horizontalCenter anchors.horizontalCenter: parent.horizontalCenter
active: Settings.data.audio.showMiniplayerCava && Settings.data.audio.visualizerType == "wave" && MediaService.isPlaying active: Settings.data.audio.showMiniplayerCava && Settings.data.audio.visualizerType == "wave"
&& MediaService.isPlaying
z: 0 z: 0
sourceComponent: WaveSpectrum { sourceComponent: WaveSpectrum {

View file

@ -159,7 +159,7 @@ Loader {
function getAppIcon(toplevel: Toplevel): string { function getAppIcon(toplevel: Toplevel): string {
if (!toplevel) if (!toplevel)
return "" return ""
let icon = Quickshell.iconPath(DesktopEntries.byId(toplevel.appId?.toLowerCase()).icon); let icon = Quickshell.iconPath(DesktopEntries.byId(toplevel.appId?.toLowerCase()).icon)
return icon || Quickshell.iconPath("application-x-executable", true) return icon || Quickshell.iconPath("application-x-executable", true)
} }

View file

@ -260,7 +260,6 @@ ColumnLayout {
} }
} }
// Divider // Divider
NDivider { NDivider {
Layout.fillWidth: true Layout.fillWidth: true

View file

@ -37,7 +37,8 @@ Singleton {
Process { Process {
id: process id: process
stdinEnabled: true stdinEnabled: true
running: (Settings.data.audio.visualizerType !== "none") && (PanelService.sidePanel.active || Settings.data.audio.showMiniplayerCava) running: (Settings.data.audio.visualizerType !== "none") && (PanelService.sidePanel.active
|| Settings.data.audio.showMiniplayerCava)
command: ["cava", "-p", "/dev/stdin"] command: ["cava", "-p", "/dev/stdin"]
onExited: { onExited: {
stdinEnabled = true stdinEnabled = true