12 lines
243 B
Lua
12 lines
243 B
Lua
-- 常用程序定义(供 keybinds 等模块引用)
|
|
|
|
local terminal = "kitty"
|
|
local fileManager = "dolphin"
|
|
local browser = "firefox"
|
|
|
|
return {
|
|
terminal = terminal,
|
|
fileManager = fileManager,
|
|
browser = browser,
|
|
}
|