From 8332e6b75110c0a48c4ff2d04f6cd3debf27a86e Mon Sep 17 00:00:00 2001 From: Luke Bonham Date: Fri, 10 Mar 2017 20:48:23 +0100 Subject: [PATCH] lain: new commit --- lain | 2 +- rc.lua.template | 8 ++++---- themes/powerarrow/theme.lua | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/lain b/lain index cc8de6a..1ece7c3 160000 --- a/lain +++ b/lain @@ -1 +1 @@ -Subproject commit cc8de6a059757bc5ea3f8f7013db55ab3af924a5 +Subproject commit 1ece7c35b7b119ebb1c1bef33d5c04507ff2f117 diff --git a/rc.lua.template b/rc.lua.template index a98aff5..4728f35 100644 --- a/rc.lua.template +++ b/rc.lua.template @@ -355,22 +355,22 @@ globalkeys = awful.util.table.join( -- ALSA volume control awful.key({ altkey }, "Up", function () - os.execute(string.format("amixer set %s 1%%+", beautiful.volume.channel)) + os.execute(string.format("amixer -q set %s 1%%+", beautiful.volume.channel)) beautiful.volume.update() end), awful.key({ altkey }, "Down", function () - os.execute(string.format("amixer set %s 1%%-", beautiful.volume.channel)) + os.execute(string.format("amixer -q set %s 1%%-", beautiful.volume.channel)) beautiful.volume.update() end), awful.key({ altkey }, "m", function () - os.execute(string.format("amixer set %s toggle", beautiful.volume.togglechannel or beautiful.volume.channel)) + os.execute(string.format("amixer -q set %s toggle", beautiful.volume.togglechannel or beautiful.volume.channel)) beautiful.volume.update() end), awful.key({ altkey, "Control" }, "m", function () - os.execute(string.format("amixer set %s 100%%", beautiful.volume.channel)) + os.execute(string.format("amixer -q set %s 100%%", beautiful.volume.channel)) beautiful.volume.update() end), diff --git a/themes/powerarrow/theme.lua b/themes/powerarrow/theme.lua index 35e2ccf..0519a73 100644 --- a/themes/powerarrow/theme.lua +++ b/themes/powerarrow/theme.lua @@ -98,7 +98,7 @@ theme.titlebar_maximized_button_normal_inactive = theme.dir .. "/icons/titlebar/ local markup = lain.util.markup local separators = lain.util.separators --- Textclock +-- Binary clock local binclock = require("themes.powerarrow.binclock"){ height = 16, show_seconds = true,