Audacious hotkeys added.
This commit is contained in:
parent
1a1c88e835
commit
434dc96e86
12
rc.lua
12
rc.lua
|
@ -393,10 +393,14 @@ globalkeys = awful.util.table.join(
|
||||||
awful.util.eval, nil,
|
awful.util.eval, nil,
|
||||||
awful.util.getdir("cache") .. "/history_eval")
|
awful.util.getdir("cache") .. "/history_eval")
|
||||||
end),
|
end),
|
||||||
awful.key({ modkey }, "l",function () awful.util.spawn( "mpc play" ) end),
|
awful.key({ modkey }, "l",function () awful.util.spawn( "mpc play" );
|
||||||
awful.key({ modkey }, ";",function () awful.util.spawn( "mpc pause" ) end),
|
awful.util.spawn( "audacious -p" ) end),
|
||||||
awful.key({ modkey }, "'",function () awful.util.spawn( "mpc prev" ) end),
|
awful.key({ modkey }, ";",function () awful.util.spawn( "mpc pause" );
|
||||||
awful.key({ modkey }, "\\",function () awful.util.spawn( "mpc next" ) end)
|
awful.util.spawn( "audacious -u" ) end),
|
||||||
|
awful.key({ modkey }, "'",function () awful.util.spawn( "mpc prev" );
|
||||||
|
awful.util.spawn( "audacious -r" ) end),
|
||||||
|
awful.key({ modkey }, "\\",function () awful.util.spawn( "mpc next" );
|
||||||
|
awful.util.spawn( "audacious -f" ) end)
|
||||||
)
|
)
|
||||||
|
|
||||||
clientkeys = awful.util.table.join(
|
clientkeys = awful.util.table.join(
|
||||||
|
|
Loading…
Reference in New Issue