1
0
Fork 0
mirror of https://github.com/lcpz/awesome-copycats.git synced 2024-10-22 12:31:23 +00:00

set default rc.lua settings for terminal and editor; https://github.com/awesomeWM/awesome/issues/1810

This commit is contained in:
Luke Bonham 2017-06-07 11:57:22 +02:00
parent 07b3947464
commit df5c1670ae

View file

@ -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"