diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2017-08-20 15:39:10 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2017-08-20 15:39:10 -0300 |
commit | 38bae629d27b9f1f0859524e66e986a73cd1945e (patch) | |
tree | eea154b60503e699912ecdde77e74e4fa36f609d | |
parent | 9c347aa63684d7742d59fa724c5ce321f0e8c0a9 (diff) | |
download | awesome-38bae629d27b9f1f0859524e66e986a73cd1945e.tar.gz awesome-38bae629d27b9f1f0859524e66e986a73cd1945e.tar.bz2 |
Run gpick in single mode
-rw-r--r-- | config.dot/awesome.link/keys.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config.dot/awesome.link/keys.lua b/config.dot/awesome.link/keys.lua index 14ee5b3..20bde9c 100644 --- a/config.dot/awesome.link/keys.lua +++ b/config.dot/awesome.link/keys.lua @@ -8,7 +8,7 @@ globalkeys = awful.util.table.join(root.keys(), awful.key({ modkey, }, "g", function () awful.util.spawn("vmg") end, {description = "gimp", group = "client"}), awful.key({ modkey, }, "h", function () awful.util.spawn("terminal chat") end, {description = "chat", group = "client"}), awful.key({ modkey, }, "i", function () awful.util.spawn("geeqie load") end, {description = "geeqie", group = "client"}), - awful.key({ modkey, }, "l", function () awful.util.spawn("gpick -p") end, {description = "gpick", group = "client"}), + awful.key({ modkey, }, "l", function () awful.util.spawn("gpick -s -p") end, {description = "gpick", group = "client"}), awful.key({ modkey, }, "m", function () awful.util.spawn("terminal xmail") end, {description = "mail", group = "client"}), awful.key({ modkey, }, "n", function () awful.util.spawn("terminal news") end, {description = "news", group = "client"}), awful.key({ modkey, }, "o", function () awful.util.spawn("chromium-browser --incognito") end, {description = "chromium", group = "client"}), |