26 lines
459 B
Markdown
26 lines
459 B
Markdown
# Volumebar widget
|
|
|
|
Almost the same as volume widget, but more minimalistic:
|
|
|
|
![screenshot](out.gif)
|
|
|
|
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
|
|
require("volumebar")
|
|
...
|
|
s.mytasklist, -- Middle widget
|
|
{ -- Right widgets
|
|
layout = wibox.layout.fixed.horizontal,
|
|
...
|
|
volumebar_widget,
|
|
...
|
|
```
|