2017-09-06 20:00:29 +02:00
# Volumebar widget
Almost the same as volume widget, but more minimalistic:
2017-09-06 19:55:04 +02:00
![screenshot ](out.gif )
2017-09-06 20:00:29 +02:00
Supports
- scroll up - increase volume,
- scroll down - decrease volume,
- left click - mute/unmute.
## Installation
Clone repo, include widget and use it in **rc.lua** :
```lua
2019-02-08 17:21:21 +01:00
local volumebar_widget = require("awesome-wm-widgets.volumebar-widget.volumebar")
2017-09-06 20:00:29 +02:00
...
s.mytasklist, -- Middle widget
{ -- Right widgets
layout = wibox.layout.fixed.horizontal,
...
volumebar_widget,
...
```
2017-10-21 03:37:49 +02:00
## Troubleshooting
If the bar is not showing up, try to decrease top or bottom margin - widget uses hardcoded margins for vertical alignment, so if your wibox is too small then bar is simply hidden by the margins.