about summary refs log tree commit diff
path: root/awesome
diff options
context:
space:
mode:
authorRaphael McSinyx <vn.mcsinyx@gmail.com>2017-02-19 09:46:16 +0700
committerRaphael McSinyx <vn.mcsinyx@gmail.com>2017-02-19 09:46:16 +0700
commit18ff4bcb029e49ef9ee1e41c8bafb8ca880c2d42 (patch)
treeb5629a4f59eac7545ef328b56a9e4ee6d38e3018 /awesome
parenta295db54fbe539abda4542195fa3b5781d13806d (diff)
downloaddotfiles-18ff4bcb029e49ef9ee1e41c8bafb8ca880c2d42.tar.gz
Update 20170219
Diffstat (limited to 'awesome')
-rw-r--r--awesome/.config/awesome/rc.lua5
1 files changed, 4 insertions, 1 deletions
diff --git a/awesome/.config/awesome/rc.lua b/awesome/.config/awesome/rc.lua
index 4c9ce02..6b41199 100644
--- a/awesome/.config/awesome/rc.lua
+++ b/awesome/.config/awesome/rc.lua
@@ -52,6 +52,7 @@ editor = "gvim"
 root_terminal = terminal .. " -e su -"
 ranger = terminal .. " -e ranger"
 python = terminal .. " -e python3"
+guile = terminal .. " -e guile"
 mutt = terminal .. " -e mutt"
 cmus = terminal .. " -e cmus"
 cmus_pause = "cmus-remote -u"
@@ -75,7 +76,7 @@ modkey = "Mod4"
 awful.layout.layouts = {
   awful.layout.suit.tile,
   -- awful.layout.suit.tile.left,
-  awful.layout.suit.tile.bottom,
+  -- awful.layout.suit.tile.bottom,
   -- awful.layout.suit.tile.top,
   -- awful.layout.suit.fair,
   -- awful.layout.suit.fair.horizontal,
@@ -359,6 +360,8 @@ globalkeys = awful.util.table.join(
             {description = "open ranger file manager", group = "launcher"}),
   awful.key({modkey}, "p", function() awful.spawn(python) end,
             {description = "open Python 3 interpreter", group = "launcher"}),
+  awful.key({modkey}, "g", function() awful.spawn(guile) end,
+            {description = "open Guile interpreter", group = "launcher"}),
   awful.key({modkey}, "z", function() awful.spawn("zathura") end,
             {description = "open zathura document viewer", group = "launcher"}),
   awful.key({modkey}, "m", function() awful.spawn(mutt) end,