Files
tawm/pkgs/awesome/awesome/config/apps.lua
2024-08-06 00:49:41 +05:30

11 lines
286 B
Lua

-- This is used later as the default terminal and editor to run.
local apps = {}
apps.terminal = "wezterm"
apps.editor = "nvim"
apps.editor_cmd = apps.terminal .. " -e " .. apps.editor
-- Set the terminal for the menubar.
require("menubar").utils.terminal = apps.terminal
return apps