summaryrefslogtreecommitdiff
path: root/widgets/audio.lua
diff options
context:
space:
mode:
Diffstat (limited to 'widgets/audio.lua')
-rw-r--r--widgets/audio.lua21
1 files changed, 0 insertions, 21 deletions
diff --git a/widgets/audio.lua b/widgets/audio.lua
deleted file mode 100644
index 002c556..0000000
--- a/widgets/audio.lua
+++ /dev/null
@@ -1,21 +0,0 @@
-local awful = require("awful")
-local wibox = require("wibox")
-local gears = require("gears")
-
-local audio_dropdown = awful.popup {
- widget = {
- margins = 10,
- widget = wibox.container.margin,
- {
- layout = wibox.layout.fixed.horizontal,
- wibox.widget.textbox "AUDIO",
- },
- },
- ontop = true,
- placement = awful.placement.centered,
- border_width = 1,
- border_color = "#ff0000",
- visible = true,
-}
-
-return audio_dropdown