diff options
author | Nguyễn Gia Phong <vn.mcsinyx@gmail.com> | 2019-03-28 11:34:56 +0700 |
---|---|---|
committer | Nguyễn Gia Phong <vn.mcsinyx@gmail.com> | 2019-03-28 11:34:56 +0700 |
commit | b06aecea346686e7818063eadc3a48285646a883 (patch) | |
tree | bc97102ae146950bbc2df48ccac518d8613301c0 /awesome | |
parent | 99f6a9203fce6794d335577754c8223d477a6a3d (diff) | |
download | dotfiles-b06aecea346686e7818063eadc3a48285646a883.tar.gz |
Update 2019-03-28
Diffstat (limited to 'awesome')
-rw-r--r-- | awesome/.config/awesome/rc.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/awesome/.config/awesome/rc.lua b/awesome/.config/awesome/rc.lua index 93fe5a8..dc8fa1b 100644 --- a/awesome/.config/awesome/rc.lua +++ b/awesome/.config/awesome/rc.lua @@ -55,6 +55,7 @@ local ranger = "x-terminal-emulator -e ranger" local python3 = "x-terminal-emulator -e python3" local perl6 = "x-terminal-emulator -e perl6" local guile = "x-terminal-emulator -e guile" +local emacs = "x-terminal-emulator -e emacs -nw" local slock_suspend = "slock systemctl --ignore-inhibitors suspend" -- Audacious media player @@ -441,7 +442,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"emacs", + awful.key({modkey}, "e", spawner(emacs), {description = "open Emacs", group = "launcher"}), awful.key({modkey}, "b", spawner"luakit", {description = "open Luakit", group = "launcher"}), |