From df5c1670ae73cc34f65564c20bfc66e7907bfe03 Mon Sep 17 00:00:00 2001 From: Luke Bonham Date: Wed, 7 Jun 2017 11:57:22 +0200 Subject: [PATCH] set default rc.lua settings for terminal and editor; https://github.com/awesomeWM/awesome/issues/1810 --- rc.lua.template | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/rc.lua.template b/rc.lua.template index 68c0eee..b2ba042 100644 --- a/rc.lua.template +++ b/rc.lua.template @@ -7,7 +7,7 @@ --]] -- {{{ Required libraries -local awesome, client, screen, tag = awesome, client, screen, tag +local awesome, client, mouse, screen, tag = awesome, client, mouse, screen, tag local ipairs, string, os, table, tostring, tonumber, type = ipairs, string, os, table, tostring, tonumber, type local gears = require("gears") @@ -55,15 +55,15 @@ local function run_once(cmd_arr) end end -run_once({ "urxvtd", "unclutter -root" }) +run_once({ "unclutter -root" }) -- entries must be comma-separated -- }}} -- {{{ Variable definitions local chosen_theme = "multicolor" local modkey = "Mod4" local altkey = "Mod1" -local terminal = "urxvtc" or "xterm" -local editor = os.getenv("EDITOR") or "nano" or "vi" +local terminal = "xterm" +local editor = os.getenv("EDITOR") or "nano" local gui_editor = "gvim" local browser = "firefox"