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, 21 insertions, 0 deletions
diff --git a/widgets/audio.lua b/widgets/audio.lua
new file mode 100644
index 0000000..002c556
--- /dev/null
+++ b/widgets/audio.lua
@@ -0,0 +1,21 @@
+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