diff options
author | Tim Keller <tjkeller.xyz> | 2024-11-17 22:48:47 -0600 |
---|---|---|
committer | Tim Keller <tjkeller.xyz> | 2024-11-17 22:48:47 -0600 |
commit | 1ad1e4120700148359b271566ca70aed7ae79321 (patch) | |
tree | 8a7955e5d40bcaf51a2ca2044637532dcf850341 /widgets/audio.lua | |
parent | 25013359a29e76693e908af1395ae31b0cf15c26 (diff) | |
download | awesome-1ad1e4120700148359b271566ca70aed7ae79321.tar.xz awesome-1ad1e4120700148359b271566ca70aed7ae79321.zip |
pavolctld refactor and audio dropdown initial
Diffstat (limited to 'widgets/audio.lua')
-rw-r--r-- | widgets/audio.lua | 21 |
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 |