1
0
Fork 0
mirror of https://github.com/lcpz/awesome-copycats.git synced 2025-01-11 02:08:08 +00:00

Moved variables to ./settings/variables.lua

This commit is contained in:
Alexandre Viau 2014-05-11 20:34:01 -04:00
parent 8a6f4c8236
commit 34e4fd1590
9 changed files with 28 additions and 93 deletions

View file

@ -29,18 +29,8 @@ os.setlocale(os.getenv("LANG"))
-- beautiful init
beautiful.init(os.getenv("HOME") .. "/.config/awesome/themes/blackburn/theme.lua")
-- common
modkey = "Mod4"
altkey = "Mod1"
terminal = "urxvtc" or "xterm"
editor = os.getenv("EDITOR") or "nano" or "vi"
editor_cmd = terminal .. " -e " .. editor
-- user defined
browser = "dwb"
browser2 = "iron"
gui_editor = "gvim"
graphics = "gimp"
-- variables
require("settings.variables")
layouts = {
awful.layout.suit.floating,

View file

@ -30,18 +30,8 @@ os.setlocale(os.getenv("LANG"))
-- beautiful init
beautiful.init(os.getenv("HOME") .. "/.config/awesome/themes/copland/theme.lua")
-- common
modkey = "Mod4"
altkey = "Mod1"
terminal = "urxvtc" or "xterm"
editor = os.getenv("EDITOR") or "nano" or "vi"
editor_cmd = terminal .. " -e " .. editor
-- user defined
browser = "dwb"
browser2 = "iron"
gui_editor = "gvim"
graphics = "gimp"
-- variables
require("settings.variables")
-- lain
lain.layout.termfair.nmaster = 3

View file

@ -29,18 +29,8 @@ require("settings.startup")
-- beautiful init
beautiful.init(awful.util.getdir("config") .. "/themes/dremora/theme.lua")
-- common
modkey = "Mod4"
altkey = "Mod1"
terminal = "urxvtc" or "xterm"
editor = os.getenv("EDITOR") or "nano" or "vi"
editor_cmd = terminal .. " -e " .. editor
-- user defined
browser = "dwb"
browser2 = "iron"
gui_editor = "gvim"
graphics = "gimp"
-- variables
require("settings.variables")
layouts = {
awful.layout.suit.floating,

View file

@ -29,18 +29,9 @@ require("settings.startup")
-- beautiful init
beautiful.init(os.getenv("HOME") .. "/.config/awesome/themes/holo/theme.lua")
-- common
modkey = "Mod4"
altkey = "Mod1"
terminal = "urxvtc" or "xterm"
editor = os.getenv("EDITOR") or "nano" or "vi"
editor_cmd = terminal .. " -e " .. editor
-- variables
require("settings.variables")
-- user defined
browser = "dwb"
browser2 = "iron"
gui_editor = "gvim"
graphics = "gimp"
musiplr = terminal .. " -e ncmpcpp "
layouts = {

View file

@ -29,18 +29,9 @@ os.setlocale(os.getenv("LANG"))
-- beautiful init
beautiful.init(os.getenv("HOME") .. "/.config/awesome/themes/multicolor/theme.lua")
-- common
modkey = "Mod4"
altkey = "Mod1"
terminal = "urxvtc" or "xterm"
editor = os.getenv("EDITOR") or "nano" or "vi"
editor_cmd = terminal .. " -e " .. editor
-- variables
require("settings.variables")
-- user defined
browser = "dwb"
browser2 = "iron"
gui_editor = "gvim"
graphics = "gimp"
mail = terminal .. " -e mutt "
layouts = {

View file

@ -29,18 +29,9 @@ os.setlocale(os.getenv("LANG"))
-- beautiful init
beautiful.init(os.getenv("HOME") .. "/.config/awesome/themes/powerarrow-darker/theme.lua")
-- common
modkey = "Mod4"
altkey = "Mod1"
terminal = "urxvtc" or "xterm"
editor = os.getenv("EDITOR") or "nano" or "vi"
editor_cmd = terminal .. " -e " .. editor
-- variables
require("settings.variables")
-- user defined
browser = "dwb"
browser2 = "iron"
gui_editor = "gvim"
graphics = "gimp"
mail = terminal .. " -e mutt "
iptraf = terminal .. " -g 180x54-20+34 -e sudo iptraf-ng -i all "
musicplr = terminal .. " -g 130x34-320+16 -e ncmpcpp "

View file

@ -29,18 +29,8 @@ os.setlocale(os.getenv("LANG"))
-- beautiful init
beautiful.init(os.getenv("HOME") .. "/.config/awesome/themes/rainbow/theme.lua")
-- common
modkey = "Mod4"
altkey = "Mod1"
terminal = "urxvtc" or "xterm"
editor = os.getenv("EDITOR") or "nano" or "vi"
editor_cmd = terminal .. " -e " .. editor
-- user defined
browser = "dwb"
browser2 = "iron"
gui_editor = "gvim"
graphics = "gimp"
-- variables
require("settings.variables")
-- lain
lain.layout.termfair.nmaster = 3

View file

@ -29,18 +29,8 @@ os.setlocale(os.getenv("LANG"))
-- beautiful init
beautiful.init(os.getenv("HOME") .. "/.config/awesome/themes/steamburn/theme.lua")
-- common
modkey = "Mod4"
altkey = "Mod1"
terminal = "urxvtc" or "xterm"
editor = os.getenv("EDITOR") or "nano" or "vi"
editor_cmd = terminal .. " -e " .. editor
-- user defined
browser = "dwb"
browser2 = "iron"
gui_editor = "gvim"
graphics = "gimp"
-- variables
require("settings.variables")
-- lain
lain.layout.termfair.nmaster = 3

12
settings/variables.lua Normal file
View file

@ -0,0 +1,12 @@
-- common
modkey = "Mod4"
altkey = "Mod1"
terminal = "urxvtc" or "xterm"
editor = os.getenv("EDITOR") or "nano" or "vi"
editor_cmd = terminal .. " -e " .. editor
-- user defined
browser = "dwb"
browser2 = "iron"
gui_editor = "gvim"
graphics = "gimp"