template updated

This commit is contained in:
copycat-killer 2017-01-28 23:47:01 +01:00
parent d224bf4e6f
commit fe5585f180
1 changed files with 12 additions and 1 deletions

View File

@ -394,7 +394,18 @@ globalkeys = awful.util.table.join(
awful.spawn.with_shell("mpc next")
beautiful.mpd.update()
end),
--]]
awful.key({ altkey }, "0",
function ()
local common = { text = "MPD widget ", position = "top_middle", timeout = 2 }
if beautiful.mpd.timer.started then
beautiful.mpd.timer:stop()
common.text = common.text .. lain.util.markup.bold("ON")
else
beautiful.mpd.timer:start()
common.text = common.text .. lain.util.markup.bold("OFF")
end
naughty.notify(common)
end),
-- Copy primary to clipboard (terminals to gtk)
awful.key({ modkey }, "c", function () awful.spawn("xsel | xsel -i -b") end),