diff options
author | Raphael McSinyx <vn.mcsinyx@gmail.com> | 2017-05-29 21:47:51 +0700 |
---|---|---|
committer | Raphael McSinyx <vn.mcsinyx@gmail.com> | 2017-05-29 21:47:51 +0700 |
commit | 1b1f8f5b5ed00684e59168dd4bc2fb0348d0eac6 (patch) | |
tree | e67cdb5c824e85d714822b41b051f177fc67465a /awesome | |
parent | bd2ab43fc68464d9502d04ca2f9d005ff19764ef (diff) | |
download | dotfiles-1b1f8f5b5ed00684e59168dd4bc2fb0348d0eac6.tar.gz |
Update 2017-05-29
Diffstat (limited to 'awesome')
-rw-r--r-- | awesome/.config/awesome/rc.lua | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/awesome/.config/awesome/rc.lua b/awesome/.config/awesome/rc.lua index 85ac9cd..4c762a4 100644 --- a/awesome/.config/awesome/rc.lua +++ b/awesome/.config/awesome/rc.lua @@ -357,10 +357,11 @@ globalkeys = awful.util.table.join( {description = "open a root terminal", group = "launcher"}), awful.key({modkey}, "v", function() awful.spawn(editor) end, {description = "open GVim", group = "launcher"}), - awful.key({modkey}, "b", function() awful.spawn("torbrowser-launcher") end, + awful.key({modkey}, "b", function() awful.spawn("firefox") end, + {description = "open Firefox", group = "launcher"}), + awful.key({modkey, "Shift"}, "b", + function() awful.spawn("torbrowser-launcher") end, {description = "open Tor Browser", group = "launcher"}), - awful.key({modkey, "Shift"}, "b", function() awful.spawn("firefox-esr") end, - {description = "open Firefox ESR", group = "launcher"}), awful.key({modkey}, "r", function() awful.spawn(ranger) end, {description = "open ranger file manager", group = "launcher"}), awful.key({modkey}, "p", function() awful.spawn(python) end, |