2020-12-02 15:02:44 +01:00
# Volume widget
2020-12-15 04:33:56 +01:00
Volume widget based on [amixer ](https://linux.die.net/man/1/amixer ) (is used for controlling the audio volume) and [pacmd ](https://linux.die.net/man/1/pacmd ) (is used for selecting a sink/source). Also, the widget provides an easy way to customize how it looks, following types are supported out-of-the-box:
![types ](./screenshots/variations.png )
From left to right: `horizontal_bar` , `vertical_bar` , `icon` , `icon_and_text` , `arc`
2020-12-17 04:12:45 +01:00
A right-click on the widget opens a popup where you can choose a sink/source:
2020-12-15 04:33:56 +01:00
![sink-sources ](./screenshots/volume-sink-sources.png )
2020-12-17 04:12:45 +01:00
### Features
- switch between sinks/sources by right clicking on the widget;
- more responsive than previous versions of volume widget, which were refreshed once a second;
2020-12-24 02:48:07 +01:00
- 5 predefined customizable looks;
## Installation
Clone the repo under ** ~/.config/awesome/** and add widget in **rc.lua** :
```lua
local volume_widget = require('awesome-wm-widgets.experiments.volume.volume')
...
s.mytasklist, -- Middle widget
{ -- Right widgets
layout = wibox.layout.fixed.horizontal,
...
-- default
volume_widget(),
-- customized
volume_widget{
type = 'arc'
},
```
### Shortcuts
To improve responsiveness of the widget when volume level is changed by a shortcut use corresponding methods of the widget:
```lua
awful.key({ modkey }, "]", function() volume_widget:inc() end),
awful.key({ modkey }, "[", function() volume_widget:dec() end),
awful.key({ modkey }, "\\", function() volume_widget:toggle() end),
```
2020-12-17 04:12:45 +01:00
2020-12-15 04:33:56 +01:00
## Customization
It is possible to customize the widget by providing a table with all or some of the following config parameters:
### Generic parameter
| Name | Default | Description |
|---|---|---|
| `type` | `icon_and_text` | Widget type, one of `horizontal_bar` , `vertical_bar` , `icon` , `icon_and_text` , `arc` |
2020-12-24 02:48:07 +01:00
Depending on the chosen widget type add parameters from the corresponding section below:
#### `icon` parameters
2020-12-15 04:33:56 +01:00
| Name | Default | Description |
|---|---|---|
| `icon_dir` | `./icons` | Path to the folder with icons |
_Note:_ if you are changing icons, the folder should contain following .svg images:
- audio-volume-high-symbolic
- audio-volume-medium-symbolic
- audio-volume-low-symbolic
- audio-volume-muted-symbolic
2020-12-24 02:48:07 +01:00
#### `icon_and_text` parameters
2020-12-15 04:33:56 +01:00
| Name | Default | Description |
|---|---|---|
| `icon_dir` | `./icons` | Path to the folder with icons |
| `font` | `beautiful.font` | Font name and size, like `Play 12` |
2020-12-24 02:48:07 +01:00
#### `arc` parameters
2020-12-15 04:33:56 +01:00
| Name | Default | Description |
|---|---|---|
| `thickness` | 2 | Thickness of the arc |
| `main_color` | `beautiful.fg_color` | Color of the arc |
| `bg_color` | `#ffffff11` | Color of the arc's background |
| `mute_color` | `beautiful.fg_urgent` | Color of the arc when mute |
| `size` | 18 | Size of the widget |
2020-12-24 02:48:07 +01:00
#### `horizontal_bar` parameters
2020-12-15 04:33:56 +01:00
| Name | Default | Description |
|---|---|---|
| `main_color` | `beautiful.fg_normal` | Color of the bar |
| `mute_color` | `beautiful.fg_urgent` | Color of the bar when mute |
| `bg_color` | `'#ffffff11'` | Color of the bar's background |
| `width` | `50` | The bar width |
| `margins` | `10` | Top and bottom margins (if your wibar is 22 px high, bar will be 2 px = 22 - 2*10) |
| `shape` | `'bar'` | [gears.shape ](https://awesomewm.org/doc/api/libraries/gears.shape.html ), could be `octogon` , `hexagon` , `powerline` , etc |
| `with_icon` | `true` | Show volume icon|
2020-12-17 04:12:45 +01:00
_Note:_ I didn't figure out how does the `forced_height` property of progressbar widget work (maybe it doesn't work at all), thus there is a workaround with margins.
2020-12-15 04:33:56 +01:00
2020-12-24 02:48:07 +01:00
#### `vertical_bar` parameters
2020-12-15 04:33:56 +01:00
| Name | Default | Description |
|---|---|---|
| `main_color` | `beautiful.fg_normal` | Color of the bar |
| `mute_color` | `beautiful.fg_urgent` | Color of the bar when mute |
| `bg_color` | `'#ffffff11'` | Color of the bar's background |
| `width` | `10` | The bar width |
| `margins` | `20` | Top and bottom margins (if your wibar is 22 px high, bar will be 2 px = 22 - 2*10) |
| `shape` | `'bar'` | [gears.shape ](https://awesomewm.org/doc/api/libraries/gears.shape.html ), could be `octogon` , `hexagon` , `powerline` , etc |
| `with_icon` | `true` | Show volume icon|