awful.key(nil, "XF86Explorer", function () awful.spawn("") end),
awful.key(nil, "XF86Favorites", function () awful.spawn("systemctl suspend") end),
-awful.key({ cmdkey }, "Multi_key", function () run_output_notify("flameshot gui") end),
+awful.key({ cmdkey }, "Multi_key", function () run_output_notify("flameshot gui", "Output") end),
+awful.key({ cmdkey, "Shift" }, "Multi_key", function () run_output_notify("flameshot full --delay 2000 --clipboard", "Output") end),
awful.key({ cmdkey }, "Up", function () awful.spawn("pap prev") end),
awful.key({ cmdkey }, "Left", function () awful.spawn("pap seek -10") end),
awful.key({ cmdkey }, "Right", function () awful.spawn("pap seek +10") end),
awful.key({ cmdkey, "Shift" }, "Right", function () awful.spawn("pap seek +60") end),
awful.key({ cmdkey }, "space", function () awful.spawn("pap pause") end),
-awful.key({ cmdkey }, "\\", function () run_output_notify("pap info") end),
-awful.key({ cmdkey }, "]", function () run_output_notify("pap list") end)
+awful.key({ cmdkey }, "\\", function () run_output_notify("pap info", "Track info") end),
+awful.key({ cmdkey }, "]", function () run_output_notify("pap list", "Playlist") end)
)
-function run_output_notify(cmd)
+function run_output_notify(cmd, title)
awful.spawn.easy_async(cmd, function(stdout, stderr, reason, exit_code)
- naughty.notify({
- preset = naughty.config.presets.low,
- title = "Playlist",
- text = stdout})
+ if #stdout > 1 then
+ naughty.notify({
+ preset = naughty.config.presets.low,
+ title = title,
+ text = stdout})
+ end
end)
end
-- Set the windows at the slave,
-- i.e. put it at the end of others instead of setting it master.
-- if not awesome.startup then awful.client.setslave(c) end
- if not awesome.startup then
- local t = awful.screen.focused().selected_tag
- if t.name == "xmutt" then
- awful.client.setslave(c)
- end
- end
+ --if not awesome.startup then
+ -- local t = awful.screen.focused().selected_tag
+ -- if t.name == "xmutt" then
+ -- awful.client.setslave(c)
+ -- end
+ --end
if awesome.startup and
not c.size_hints.user_position