diff options
author | Pavel Makhov <pavel.makhov@savoirfairelinux.com> | 2017-01-23 11:01:16 -0500 |
---|---|---|
committer | Pavel Makhov <pavel.makhov@savoirfairelinux.com> | 2017-01-23 11:01:16 -0500 |
commit | 2d2684587d61b294ef1f0c7f1a1d251a0aaf884a (patch) | |
tree | 4f9400b3d7ce328355e43fc262819ea96132d8ac /volume-widget-v4 | |
parent | 130813a6e2ed9e74526a67a44e5829b7b22eb8c2 (diff) |
Move v4 compatible widget in this repo
Diffstat (limited to 'volume-widget-v4')
-rw-r--r-- | volume-widget-v4/volume.lua | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/volume-widget-v4/volume.lua b/volume-widget-v4/volume.lua new file mode 100644 index 0000000..3a4793a --- /dev/null +++ b/volume-widget-v4/volume.lua @@ -0,0 +1,26 @@ +local wibox = require("wibox") +local awful = require("awful") + +function update_volume() + awful.spawn.easy_async([[bash -c 'amixer -D pulse sget Master']], + function(stdout, stderr, reason, exit_code) + local volume = string.match(stdout, "(%d?%d?%d)%%") + volume = tonumber(string.format("% 3d", volume)) + local volume_icon_name + + if (volume >= 0 and volume < 20) then volume_icon_name="audio-volume-none-panel" + elseif (volume >= 20 and volume < 40) then volume_icon_name="audio-volume-zero-panel" + elseif (volume >= 40 and volume < 60) then volume_icon_name="audio-volume-low-panel" + elseif (volume >= 60 and volume < 80) then volume_icon_name="audio-volume-medium-panel" + elseif (volume >= 80 and volume <= 100) then volume_icon_name="audio-volume-high-panel" + end + volume_icon:set_image("/usr/share/icons/Arc-Icons/panel/22/" .. volume_icon_name .. ".svg") + end) +end + + +volume_icon = wibox.widget.imagebox() + +mytimer = timer({ timeout = 0.2 }) +mytimer:connect_signal("timeout", function () update_volume() end) +mytimer:start()
\ No newline at end of file |