about summary refs log tree commit diff
path: root/awesome/.config/awesome/rc.lua
diff options
context:
space:
mode:
authorNguyễn Gia Phong <vn.mcsinyx@gmail.com>2019-10-18 22:35:36 +0700
committerNguyễn Gia Phong <vn.mcsinyx@gmail.com>2019-10-18 22:35:36 +0700
commit9d11a8bbdf57442098f180d69eb9cd28e57c9371 (patch)
tree209561bc42f09b186f6f263b9300037b1fd57f09 /awesome/.config/awesome/rc.lua
parent9cef11d0147e1c66c3145962a0ae1b88b511ffb3 (diff)
downloaddotfiles-9d11a8bbdf57442098f180d69eb9cd28e57c9371.tar.gz
Update 2019-10-18
Diffstat (limited to 'awesome/.config/awesome/rc.lua')
-rw-r--r--awesome/.config/awesome/rc.lua6
1 files changed, 5 insertions, 1 deletions
diff --git a/awesome/.config/awesome/rc.lua b/awesome/.config/awesome/rc.lua
index 46a7af5..0052f03 100644
--- a/awesome/.config/awesome/rc.lua
+++ b/awesome/.config/awesome/rc.lua
@@ -55,6 +55,8 @@ local python3 = terminal .. " -e python3"
 local perl6 = terminal .. " -e perl6"
 local octave = terminal .. " -e octave"
 local guile = terminal .. " -e guile"
+local clojure = terminal .. " -e clojure"
+local emacs = terminal .. " -e emacsclient -nw"
 local slock_suspend = "slock systemctl --ignore-inhibitors suspend"
 
 -- Audacious media player
@@ -466,7 +468,7 @@ local globalkeys = awful.util.table.join(
             {description = "open a root terminal", group = "launcher"}),
   awful.key({modkey}, "v", spawner(editor),
             {description = "open GVim", group = "launcher"}),
-  awful.key({modkey}, "e", spawner"emacsclient -c",
+  awful.key({modkey}, "e", spawner(emacs),
             {description = "open Emacs", group = "launcher"}),
   awful.key({modkey}, "b", spawner"qutebrowser",
             {description = "open qutebrowser", group = "launcher"}),
@@ -488,6 +490,8 @@ local globalkeys = awful.util.table.join(
             {description = "open Python 3 interpreter", group = "launcher"}),
   awful.key({modkey, "Shift"}, "p", spawner(perl6),
             {description = "open Perl 6", group = "launcher"}),
+  awful.key({modkey}, "c", spawner(clojure),
+            {description = "open Clojure interpreter", group = "launcher"}),
   awful.key({modkey}, "g", spawner(guile),
             {description = "open Guile interpreter", group = "launcher"}),
   awful.key({modkey}, "o", spawner(octave),