mirror of
https://github.com/tuxdotrs/tawm.git
synced 2025-07-05 20:56:33 +05:30
11 lines
286 B
Lua
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
|