diff options
author | Pavel Makhov <streetturtle@users.noreply.github.com> | 2017-02-12 21:05:14 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-12 21:05:14 -0500 |
commit | 9fbcb2e54094f3d793cc46133956d30fb501830f (patch) | |
tree | 92fa2aa10e5346ba359fbb2f51c9c92e7dd83ac5 | |
parent | 622607c874812bb20ed989a9537d67c7eb80a72d (diff) |
Update volume.lua
-rw-r--r-- | volume-widget/volume.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/volume-widget/volume.lua b/volume-widget/volume.lua index 67ebb78..fce3f33 100644 --- a/volume-widget/volume.lua +++ b/volume-widget/volume.lua @@ -7,8 +7,8 @@ local path_to_icons = "/usr/share/icons/Arc/status/symbolic/" volume_widget = wibox.widget { { id = "icon", - image = path_to_icons .. "audio-volume-muted-symbolic.svg", - resize = false, + image = path_to_icons .. "audio-volume-muted-symbolic.svg", + resize = false, widget = wibox.widget.imagebox, }, layout = wibox.container.margin(brightness_icon, 0, 0, 3), @@ -17,7 +17,7 @@ volume_widget = wibox.widget { end } ---[[ allows control volume level by +--[[ allows control volume level by: - clicking on the widget to mute/unmute - scrolling when curson is over the widget ]] |