Files
crylia-theme/awesome/theme/crylia/tools/auto_starter.lua
2022-04-18 03:05:43 +02:00

8 lines
132 B
Lua

local awful = require("awful")
function Autostarter(table)
for i, t in ipairs(table) do
awful.spawn.with_shell(t);
end
end