From 981c8db663d783195cd5def47c355c64b20853a6 Mon Sep 17 00:00:00 2001 From: Barak Michener Date: Fri, 12 Sep 2014 15:59:41 -0400 Subject: [PATCH] fix rc.lua for whatever home reason --- .config/awesome/rc.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index 5e6aa77..eeeeebb 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -51,10 +51,10 @@ beautiful.init(confdir .. "/btheme/theme.lua") naughty.config.default_preset.font = "Inconsolata 22" -- This is used later as the default terminal and editor to run. -terminal = "run_terminal" +terminal = home .. "/bin/run_terminal" editor = os.getenv("EDITOR") or "vim" editor_cmd = terminal .. " -e " .. editor -browser = "run_browser" +browser = home .. "/bin/run_browser" -- Default modkey. -- Usually, Mod4 is the key with a logo between Control and Alt.