diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-01-17 14:55:50 +1100 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-01-17 14:55:50 +1100 |
| commit | 1f731072ac7e0bef369eedabfb396a41331e6ef2 (patch) | |
| tree | d555c97ad797901be6b62eb8d0c9173db98cd40c /src/modules/popdowns/index.tsx | |
| parent | bluetoothdevices: fallback icon (diff) | |
| download | caelestia-shell-1f731072ac7e0bef369eedabfb396a41331e6ef2.tar.gz caelestia-shell-1f731072ac7e0bef369eedabfb396a41331e6ef2.tar.bz2 caelestia-shell-1f731072ac7e0bef369eedabfb396a41331e6ef2.zip | |
networks: make popup window
Diffstat (limited to 'src/modules/popdowns/index.tsx')
| -rw-r--r-- | src/modules/popdowns/index.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/modules/popdowns/index.tsx b/src/modules/popdowns/index.tsx index ee6208d..44668a8 100644 --- a/src/modules/popdowns/index.tsx +++ b/src/modules/popdowns/index.tsx @@ -1,4 +1,5 @@ import BluetoothDevices from "./bluetoothdevices"; +import Networks from "./networks"; import Notifications from "./notifications"; import Updates from "./updates"; @@ -6,6 +7,7 @@ export default () => { <Notifications />; <Updates />; <BluetoothDevices />; + <Networks />; return null; }; |