26 lines
749 B
Lua
26 lines
749 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 = "xterm",
|
||
|
terminal = "alacritty",
|
||
|
|
||
|
-- Default modkey.
|
||
|
-- Usually, Mod4 is the key with a logo between Control and Alt.
|
||
|
-- If you do not like this or do not have such a key,
|
||
|
-- I suggest you to remap Mod4 to another key using xmodmap or other tools.
|
||
|
-- However, you can use another modifier like Mod1, but it may interact with others.
|
||
|
modkey = "Mod4",
|
||
|
|
||
|
-- user defined wallpaper
|
||
|
wallpaper = "/usr/share/backgrounds/custom/space_station.jpg",
|
||
|
--wallpaper = home .. "/Pictures/your-wallpaper-here.jpg",
|
||
|
}
|
||
|
|
||
|
return _M
|
||
|
|