20 lines
375 B
Lua
20 lines
375 B
Lua
-- {{{ Global Variable Definitions
|
|
-- moved here in module as local variable
|
|
-- }}}
|
|
|
|
local home = os.getenv("HOME")
|
|
|
|
local _M = {
|
|
-- This is used later as the default terminal and editor to run.
|
|
terminal = "alacritty",
|
|
|
|
-- Default modkey.
|
|
modkey = "Mod4",
|
|
|
|
-- user defined wallpaper
|
|
wallpaper = "/usr/share/backgrounds/custom/space_station.jpg",
|
|
}
|
|
|
|
return _M
|
|
|