summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorache <ache@ache.one>2019-06-23 07:12:59 +0200
committerache <ache@ache.one>2019-06-23 07:13:18 +0200
commite319940e660779781617e69fd671cceabd56c21d (patch)
treeb310a7d07960aa404cce1e444ea4a98589f8a9e4
parentMerge branch 'master' of srv:git/awesome (diff)
Screenshot notification Window
-rw-r--r--rc.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/rc.lua b/rc.lua
index 099d9c4..8dd1478 100644
--- a/rc.lua
+++ b/rc.lua
@@ -73,6 +73,7 @@ modkey = "Mod4"
awful.layout.layouts = {
lain.layout.uselessfairnogap, --3
awful.layout.suit.tile, --1
+ awful.layout.suit.floating, --1
lain.layout.uselesspiral, --2
}
-- }}}
@@ -594,7 +595,7 @@ awful.key({ modkey, "Shift" }, "s", hotkeys_popup.show_help, {descriptio
{description = "Screenshot", group = "awesome"}),
awful.key({ modkey, "Control" }, "s", function ()
awful.util.spawn("scrot -u")
- naughty.notify({ title = 'Scrot', text = 'Use the mouse to make a screenshot', timeout = 2 })
+ naughty.notify({ title = 'Scrot', text = 'Screenshot of focused windows', timeout = 2 })
end,
{description = "Screenshot selection", group = "awesome"}),