awesome-wm-widgets/volumearc-widget
2019-04-13 22:46:16 -04:00
..
custom.png update volumearc readme 2019-04-13 20:52:16 -04:00
out.gif volumearc widget 2017-10-09 16:20:20 -04:00
README.md add mouse control info to readme 2019-04-13 22:46:16 -04:00
volumearc.lua update volumearc readme 2019-04-13 20:52:16 -04:00

Volumearc widget

Almost the same as volumebar widget, but using arcchart:

screenshot

Supports

  • scroll up - increase volume,
  • scroll down - decrease volume,
  • left click - mute/unmute.

Customization

It is possible to customize widget by providing a table with all or some of the following config parameters:

volumearc_widget({
    main_color = '#af13f7',
    mute_color = '#ff0000',
    path_to_icon = '/usr/share/icons/Papirus-Dark/symbolic/status/audio-volume-high-symbolic.svg',
    thickness = 5,
    height = 25
})

Above config results in following widget:

custom

Installation

  1. Clone this repo under ~/.config/awesome/

    git clone https://github.com/streetturtle/awesome-wm-widgets.git ~/.config/awesome/
    
  2. Require volumearc widget at the beginning of rc.lua:

    local volumearc_widget = require("awesome-wm-widgets.volumearc-widget.volumearc")
    
  3. Add widget to the tasklist:

    s.mytasklist, -- Middle widget
        { -- Right widgets
            layout = wibox.layout.fixed.horizontal,
            ...
            --[[default]]
            volumearc_widget(),
            --[[or customized]]
            volumearc_widget({
                main_color = '#af13f7',
                mute_color = '#ff0000',
                path_to_icon = '/usr/share/icons/Papirus-Dark/symbolic/status/audio-volume-high-symbolic.svg',
                thickness = 5,
                height = 25
            }),
    
            ...