refactor code structure

This commit is contained in:
2026-08-12 23:15:12 -07:00
parent fef03be5f6
commit bfe5419bb9
17 changed files with 505 additions and 562 deletions
+10
View File
@@ -0,0 +1,10 @@
-- Small command builders shared by keybindings and autostart.
local M = {}
-- Launch graphical applications through UWSM so they inherit the managed
-- Wayland session environment and systemd scope.
function M.uwsm(command)
return "uwsm-app -- " .. command
end
return M