diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2022-07-17 09:49:42 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2022-07-17 09:49:42 -0300 |
commit | 5bc1525b22d05e4ecd5048a2ea66302fe655a3e1 (patch) | |
tree | a11cd1a844e4b34c01a719522ee7a13f1a7e533a | |
parent | 11e173f93465f2c5fbc378d814719b7018fb54b5 (diff) | |
download | awesome-5bc1525b22d05e4ecd5048a2ea66302fe655a3e1.tar.gz awesome-5bc1525b22d05e4ecd5048a2ea66302fe655a3e1.tar.bz2 |
Enable xsuspend and disable spoolpaste
-rw-r--r-- | config.dot/awesome.link/keys.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config.dot/awesome.link/keys.lua b/config.dot/awesome.link/keys.lua index f3c956f..8d7cad1 100644 --- a/config.dot/awesome.link/keys.lua +++ b/config.dot/awesome.link/keys.lua @@ -53,8 +53,8 @@ globalkeys = awful.util.table.join(root.keys(), --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("spoolpaste") end, {description = "spoolpaste", group = "client"}), - --awful.key({ modkey, }, "s", function () awful.spawn("xsuspend") end, {description = "suspend", group = "client"}), + --awful.key({ modkey, }, "s", function () awful.spawn("spoolpaste") end, {description = "spoolpaste", group = "client"}), + awful.key({ modkey, }, "s", function () awful.spawn("xsuspend") end, {description = "suspend", group = "client"}), awful.key({ modkey, }, "t", function () awful.spawn("terminal ssh-agent-loadkey") end, {description = "ssh-agent-loadkey", group = "client"}), awful.key({ modkey, }, "u", function () awful.spawn("qrpaste") end, {description = "qrpaste", group = "client"}), awful.key({ modkey, }, "v", function () awful.spawn("terminal vim") end, {description = "editor", group = "client"}), |