summaryrefslogtreecommitdiff
path: root/volumearc-widget/README.md
diff options
context:
space:
mode:
authorstreetturtle <streetturtle@users.noreply.github.com>2020-06-26 10:46:19 -0400
committerGitHub <noreply@github.com>2020-06-26 10:46:19 -0400
commit2cab18315b9fffeede00d586693b65ce401a2dc4 (patch)
tree7a125f0328ded9a27dee0d18cb927f68bb0587eb /volumearc-widget/README.md
parentd7ce1f7f705cb2278ca8cd9380b761511513afcc (diff)
parent120e15ee161cfe0091c6f1e86138101d63dc64c3 (diff)
Merge pull request #153 from bverhagen/master
New: Usr: Added user customizable button press behaviour for the volumearc widget
Diffstat (limited to 'volumearc-widget/README.md')
-rw-r--r--volumearc-widget/README.md7
1 files changed, 6 insertions, 1 deletions
diff --git a/volumearc-widget/README.md b/volumearc-widget/README.md
index 5fc0a5b..8f13bbf 100644
--- a/volumearc-widget/README.md
+++ b/volumearc-widget/README.md
@@ -25,6 +25,7 @@ It is possible to customize widget by providing a table with all or some of the
| `inc_volume_cmd` | `amixer -D pulse sset Master 5%+` | Increase volume level |
| `dec_volume_cmd` | `amixer -D pulse sset Master 5%-` | Decrease volume level |
| `tog_volume_cmd` | `amixer -D pulse sset Master toggle` | Mute / unmute |
+| `button_press` | `function(_, _, _, button) <sane default logic> end` | Overwrite the 'button\_press' signal for this widget |
### Example:
@@ -33,7 +34,11 @@ volumearc_widget({
main_color = '#af13f7',
mute_color = '#ff0000',
thickness = 5,
- height = 25
+ height = 25,
+ button_press = function(_, _, _, button) -- Overwrites the button press behaviour to open pavucontrol when clicked
+ if (button == 1) then awful.spawn('pavucontrol --tab=3', false)
+ end
+ end
})
```