Added var file

This commit is contained in:
Noella
2024-03-04 16:39:53 -07:00
parent 59fb9ea4f5
commit d2f76bc78e
3 changed files with 427 additions and 417 deletions

11
main/user_vars.lua Normal file
View File

@@ -0,0 +1,11 @@
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