diff --git a/widgets/bar/index.tsx b/widgets/bar/index.tsx
index cacfd11..263ae82 100644
--- a/widgets/bar/index.tsx
+++ b/widgets/bar/index.tsx
@@ -10,7 +10,6 @@ import { Tailscale } from "./tailscale";
import { Time } from "./time";
import { Tray } from "./tray";
import { FocusedClient, WorkspaceButton } from "./workspace";
-import { Volume } from "./volume";
export const WINDOW_NAME = "bar";
@@ -43,7 +42,6 @@ export const Bar = (gdkmonitor: Gdk.Monitor) => {
-
diff --git a/widgets/bar/volume.tsx b/widgets/bar/volume.tsx
deleted file mode 100644
index 63d9faa..0000000
--- a/widgets/bar/volume.tsx
+++ /dev/null
@@ -1,36 +0,0 @@
-import { createBinding } from "ags";
-import AstalWp from "gi://AstalWp";
-
-export const Volume = () => {
- const { defaultSpeaker: speaker, defaultMicrophone: microphone } =
- AstalWp.get_default()!;
-
- const speakerIsMuted = createBinding(speaker, "mute");
-
- return (
- <>
-
-
- val ? "fa-speaker-muted-symbolic" : "fa-speaker-symbolic",
- )}
- />
-
- speaker.set_volume(value)}
- value={createBinding(speaker, "volume")}
- />
-
-
-
-
- microphone.set_volume(value)}
- value={createBinding(microphone, "volume")}
- />
-
- >
- );
-};