Files
AwesomeWM-Config/main/user_vars.lua
2024-03-04 16:39:53 -07:00

12 lines
247 B
Lua

local _V = {}
_V = {
terminal = "alacritty",
editor = os.getenv("EDITOR") or "nvim",
editor_cmd = _V.terminal .. " -e " .. _V.editor,
modkey = "Mod4",
wallpaper = os.getenv("HOME") .. "/.config/awesome/theme/background.jpg",
}
return _V