added tridactyl and made lots of awesome changes

This commit is contained in:
Chris Cochrun 2020-08-29 14:13:33 -05:00
parent c4551f391e
commit 4fae307cdf
87 changed files with 11860 additions and 86 deletions

View file

@ -42,7 +42,7 @@ volume_slider:connect_signal(
local volume_level = volume_slider:get_value()
spawn('amixer sset Master ' ..
spawn('amixer -D pulse sset Master ' ..
volume_level .. '%',
false
)
@ -88,7 +88,7 @@ volume_slider:buttons(
local update_slider = function()
awful.spawn.easy_async_with_shell(
[[bash -c "amixer get Master"]],
[[bash -c "amixer -D pulse sget Master"]],
function(stdout)
local volume = string.match(stdout, '(%d?%d?%d)%%')