diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-01-27 21:55:02 +1100 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-01-27 21:55:02 +1100 |
| commit | df3b51399cbe82b083ef04230f3b340e12621afb (patch) | |
| tree | 666a6f23df7cd6f06cd1c00b72ca6312b57f45b3 /src/modules/popdowns/index.tsx | |
| parent | popupwindow: fix offscreen popup (diff) | |
| download | caelestia-shell-df3b51399cbe82b083ef04230f3b340e12621afb.tar.gz caelestia-shell-df3b51399cbe82b083ef04230f3b340e12621afb.tar.bz2 caelestia-shell-df3b51399cbe82b083ef04230f3b340e12621afb.zip | |
sideright: make popdown window
Weather requires a weather api key from https://weatherapi.com
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 9ee9f77..c4f4664 100644 --- a/src/modules/popdowns/index.tsx +++ b/src/modules/popdowns/index.tsx @@ -2,6 +2,7 @@ import BluetoothDevices from "./bluetoothdevices"; import Media from "./media"; import Networks from "./networks"; import Notifications from "./notifications"; +import SideRight from "./sideright"; import Updates from "./updates"; export default () => { @@ -10,6 +11,7 @@ export default () => { <BluetoothDevices />; <Networks />; <Media />; + <SideRight />; return null; }; |