diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2018-03-08 12:06:56 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2018-03-08 12:06:56 -0300 |
commit | b374555a17faa329be94110efc85640ead9f8e6a (patch) | |
tree | 35d9c08004beaaeb491122c1d2617edaf2fa080f | |
parent | 62f76e1693a3e1d53742e65d96063c42eaccfe5d (diff) | |
download | awesome-b374555a17faa329be94110efc85640ead9f8e6a.tar.gz awesome-b374555a17faa329be94110efc85640ead9f8e6a.tar.bz2 |
Adds session-chooser key binding
-rw-r--r-- | config.dot/awesome.link/keys.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/config.dot/awesome.link/keys.lua b/config.dot/awesome.link/keys.lua index 9c00faf..ec381ad 100644 --- a/config.dot/awesome.link/keys.lua +++ b/config.dot/awesome.link/keys.lua @@ -13,7 +13,8 @@ globalkeys = awful.util.table.join(root.keys(), awful.key({ modkey, }, "l", function () awful.spawn("gpick -s -p") end, {description = "gpick", group = "client"}), awful.key({ modkey, }, "m", function () awful.spawn("terminal xmail") end, {description = "mail", group = "client"}), awful.key({ modkey, }, "n", function () awful.spawn("terminal news") end, {description = "news", group = "client"}), - awful.key({ modkey, }, "o", function () awful.spawn("chromium-browser --incognito") end, {description = "chromium", group = "client"}), + --awful.key({ modkey, }, "o", function () awful.spawn("chromium-browser --incognito") end, {description = "chromium", group = "client"}), + awful.key({ modkey, }, "o", function () awful.spawn("terminal-session-chooser") end, {description = "session-chooser", group = "client"}), awful.key({ modkey, }, "p", function () awful.spawn("terminal keyringer default sclip") end, {description = "keyringer", group = "client"}), awful.key({ modkey, }, "s", function () awful.spawn("xsuspend") end, {description = "suspend", group = "client"}), awful.key({ modkey, }, "t", function () awful.spawn("tor-browser") end, {description = "tor-browser", group = "client"}), |