Permalink
Browse files
add alt-n key binding to toggle naughty state
- Loading branch information...
Showing
with
1 addition
and
0 deletions.
-
+1
−0
.config/awesome/rc.lua
|
|
@@ -291,6 +291,7 @@ globalkeys = awful.util.table.join( |
|
|
naughty.notify({ title="Screenshot", text="The full screen captured" })
|
|
|
end),
|
|
|
|
|
|
+ awful.key({ "Mod1" }, "n", naughty.toggle),
|
|
|
awful.key({ "Mod1" }, "F2", function () awful.util.spawn("gmrun") end),
|
|
|
awful.key({ "Mod1" }, "Left", function () awful.util.spawn("mpc prev") end),
|
|
|
awful.key({ "Mod1" }, "Right", function () awful.util.spawn("mpc next") end),
|
|
|
|
0 comments on commit
f589571