diff options
| author | ATMDA <atdma2600@gmail.com> | 2025-11-13 21:52:35 -0500 |
|---|---|---|
| committer | ATMDA <atdma2600@gmail.com> | 2025-11-13 21:52:35 -0500 |
| commit | 7dcfed3f0e65a86d0c7a246cea6366dbbd14b067 (patch) | |
| tree | ee58e36a7168404e98d288e937d2f0d4508cf67a /modules/bar/popouts/Content.qml | |
| parent | tray: removed ethernet config options (network covers it) (diff) | |
| download | caelestia-shell-7dcfed3f0e65a86d0c7a246cea6366dbbd14b067.tar.gz caelestia-shell-7dcfed3f0e65a86d0c7a246cea6366dbbd14b067.tar.bz2 caelestia-shell-7dcfed3f0e65a86d0c7a246cea6366dbbd14b067.zip | |
tray: wireless, ethernet, bluetooth cleanup
Diffstat (limited to 'modules/bar/popouts/Content.qml')
| -rw-r--r-- | modules/bar/popouts/Content.qml | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/modules/bar/popouts/Content.qml b/modules/bar/popouts/Content.qml index e3f569d..661a41c 100644 --- a/modules/bar/popouts/Content.qml +++ b/modules/bar/popouts/Content.qml @@ -33,7 +33,16 @@ Item { Popout { name: "network" - sourceComponent: Network {} + sourceComponent: Network { + view: "wireless" + } + } + + Popout { + name: "ethernet" + sourceComponent: Network { + view: "ethernet" + } } Popout { |