summaryrefslogtreecommitdiff
path: root/accounts/gkleen@sif/shell/quickshell/Bar.qml
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2026-07-08 22:51:44 +0200
committerGregor Kleen <gkleen@yggdrasil.li>2026-07-08 22:51:44 +0200
commitf4d01d2d9f7a921f40a3b192637959ddf9129669 (patch)
treef5f85751d7042088fd152722576f72943a26b472 /accounts/gkleen@sif/shell/quickshell/Bar.qml
parent4751f7390f1e2d4fd5a6a7e22ca111444e915583 (diff)
downloadnixos-f4d01d2d9f7a921f40a3b192637959ddf9129669.tar
nixos-f4d01d2d9f7a921f40a3b192637959ddf9129669.tar.gz
nixos-f4d01d2d9f7a921f40a3b192637959ddf9129669.tar.bz2
nixos-f4d01d2d9f7a921f40a3b192637959ddf9129669.tar.xz
nixos-f4d01d2d9f7a921f40a3b192637959ddf9129669.zip
Diffstat (limited to 'accounts/gkleen@sif/shell/quickshell/Bar.qml')
-rw-r--r--accounts/gkleen@sif/shell/quickshell/Bar.qml14
1 files changed, 12 insertions, 2 deletions
diff --git a/accounts/gkleen@sif/shell/quickshell/Bar.qml b/accounts/gkleen@sif/shell/quickshell/Bar.qml
index bce72077..33909884 100644
--- a/accounts/gkleen@sif/shell/quickshell/Bar.qml
+++ b/accounts/gkleen@sif/shell/quickshell/Bar.qml
@@ -89,7 +89,7 @@ PanelWindow {
89 KeyboardLayout {} 89 KeyboardLayout {}
90 90
91 Item { 91 Item {
92 visible: privacy.visible 92 visible: privacy.visible || ytDlp.visible
93 height: parent.height 93 height: parent.height
94 width: 8 - 4 94 width: 8 - 4
95 } 95 }
@@ -99,7 +99,17 @@ PanelWindow {
99 } 99 }
100 100
101 Item { 101 Item {
102 visible: privacy.visible 102 visible: privacy.visible && ytDlp.visible
103 height: parent.height
104 width: 8 - 4
105 }
106
107 YtDlpWidget {
108 id: ytDlp
109 }
110
111 Item {
112 visible: privacy.visible || ytDlp.visible
103 height: parent.height 113 height: parent.height
104 width: 8 - 4 114 width: 8 - 4
105 } 115 }