about summary refs log tree commit diff
path: root/awesome/.config/awesome/rc.lua
diff options
context:
space:
mode:
authorNguyễn Gia Phong <mcsinyx@disroot.org>2020-09-04 15:30:05 +0700
committerNguyễn Gia Phong <mcsinyx@disroot.org>2020-09-04 15:30:05 +0700
commit21e85821064dd444ed9a35e342c2ea220c50a6f6 (patch)
tree108db096001a2a7fcc2df5f6bfcdc03233017834 /awesome/.config/awesome/rc.lua
parent8a170f79518f66411bcd983a241ecbeda22980bf (diff)
downloaddotfiles-21e85821064dd444ed9a35e342c2ea220c50a6f6.tar.gz
Update 2020-09-04
Diffstat (limited to 'awesome/.config/awesome/rc.lua')
-rw-r--r--awesome/.config/awesome/rc.lua8
1 files changed, 5 insertions, 3 deletions
diff --git a/awesome/.config/awesome/rc.lua b/awesome/.config/awesome/rc.lua
index 5509504..328e6c0 100644
--- a/awesome/.config/awesome/rc.lua
+++ b/awesome/.config/awesome/rc.lua
@@ -57,7 +57,7 @@ local python2 = terminal .. " -e python2"
 local guile = terminal .. " -e guile"
 local clojure = terminal .. " -e clojure"
 local emacs = "emacs"
-local netrw = terminal .. " -e vim -cEx"
+local netrw = terminal .. " -e vim"
 local slock_suspend = "slock systemctl --ignore-inhibitors suspend"
 
 -- Audacious media player
@@ -477,6 +477,8 @@ local globalkeys = awful.util.table.join(
             {description = "open Tor Browser", group = "launcher"}),
   awful.key({modkey}, "t", spawner"thunderbird",
             {description = "open Thunderbird", group = "launcher"}),
+  awful.key({modkey}, "m", spawner"nheko",
+            {description = "open nheko", group = "launcher"}),
   awful.key({modkey, "Shift"}, "g", spawner"gimp",
             {description = "open GIMP", group = "launcher"}),
   awful.key({modkey}, "r", spawner(ranger),
@@ -491,8 +493,6 @@ local globalkeys = awful.util.table.join(
             {description = "open Clojure interpreter", group = "launcher"}),
   awful.key({modkey}, "g", spawner(guile),
             {description = "open Guile interpreter", group = "launcher"}),
-  awful.key({modkey}, "z", spawner"zathura",
-            {description = "open zathura document viewer", group = "launcher"}),
   awful.key({modkey}, "d", spawner"diodon",
             {description = "open clipboard manager", group = "launcher"}),
   awful.key({modkey}, "s", spawner"slock",
@@ -586,6 +586,8 @@ local clientkeys = awful.util.table.join(
               c:raise()
             end,
             {description = "toggle fullscreen", group = "client"}),
+  awful.key({modkey, "Control"}, "d", spawner"kdocker",
+            {description = "select a window to be docked", group = "client"}),
   awful.key({modkey}, "q", function (c) c:kill() end,
             {description = "close", group = "client"}),
   awful.key({modkey, "Control"}, "q", spawner"xkill",