mirror of
https://github.com/tuxdotrs/nixos-config.git
synced 2025-07-10 11:36:34 +05:30
15 lines
432 B
Lua
15 lines
432 B
Lua
-- This is used later as the default terminal and editor to run.
|
|
local apps = {}
|
|
apps.terminal = "wezterm"
|
|
apps.terminal_floating = "wezterm start --class wezterm-floating"
|
|
apps.editor = "nvim"
|
|
apps.editor_cmd = apps.terminal .. " -e " .. apps.editor
|
|
apps.neovide = "neovide"
|
|
apps.browser = "firefox"
|
|
apps.file_explorer = "thunar"
|
|
|
|
-- Set the terminal for the menubar.
|
|
require("menubar").utils.terminal = apps.terminal
|
|
|
|
return apps
|