summaryrefslogtreecommitdiff
path: root/src/modules/popdowns/index.tsx
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-01-25 16:54:43 +1100
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-01-25 16:54:43 +1100
commit0eacbc0ea2b50868d1127bc9a5265d4352632e58 (patch)
treead7bad03e73fea6d40dee358dde0ca2c7830746c /src/modules/popdowns/index.tsx
parentlauncher: change windows mode icon (diff)
downloadcaelestia-shell-0eacbc0ea2b50868d1127bc9a5265d4352632e58.tar.gz
caelestia-shell-0eacbc0ea2b50868d1127bc9a5265d4352632e58.tar.bz2
caelestia-shell-0eacbc0ea2b50868d1127bc9a5265d4352632e58.zip
media: make popdown window
Diffstat (limited to 'src/modules/popdowns/index.tsx')
-rw-r--r--src/modules/popdowns/index.tsx2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/modules/popdowns/index.tsx b/src/modules/popdowns/index.tsx
index 44668a8..9ee9f77 100644
--- a/src/modules/popdowns/index.tsx
+++ b/src/modules/popdowns/index.tsx
@@ -1,4 +1,5 @@
import BluetoothDevices from "./bluetoothdevices";
+import Media from "./media";
import Networks from "./networks";
import Notifications from "./notifications";
import Updates from "./updates";
@@ -8,6 +9,7 @@ export default () => {
<Updates />;
<BluetoothDevices />;
<Networks />;
+ <Media />;
return null;
};