dotfiles/config/awesome/options.lua

29 lines
641 B
Lua
Raw Permalink Normal View History

2023-03-16 05:12:44 -04:00
-- {{{ Modules
local gears = require("gears")
-- }}}
-- Available profiles: desktop, laptop
local profile = "desktop"
-- Default apps
local terminal = "alacritty"
local editor = os.getenv("EDITOR") or "nvim"
local editor_cmd = terminal .. " -e " .. editor
local screen_locker = "cinnamon-screensaver-command -l"
-- Default modkey
local modkey = "Mod1"
-- Chosen theme
local theme = gears.filesystem.get_configuration_dir() .. "themes/default/theme.lua"
return {
profile = profile,
terminal = terminal,
editor = editor,
editor_cmd = editor_cmd,
screen_locker = screen_locker,
modkey = modkey,
theme = theme
}