dots/.config/awesome/misc/autostart.lua
delta f42a3a2cc9 major update of awesome config
add new icons, switch over to using stylesheets instead of gears.color.recolor_image, add a music widget to the panel, optimize services in common.lua, fix the application lense filtering and increase the update rate of services in common.lua

Signed-off-by: delta <darkussdelta@gmail.com>
2023-05-21 10:12:46 +02:00

20 lines
411 B
Lua

local awful = require "awful"
local quarrel = require "quarrel"
if quarrel.is_restart() then return end
local programs = {
"picom -b",
"sxhkd",
"clipcatd",
"wezterm",
"wezterm start --class code_term",
"firefox",
"discord",
"LD_PRELOAD=/usr/lib/spotify-adblock.so spotify"
}
for _, program in ipairs(programs) do
awful.spawn.with_shell(program .. " 1>/dev/null 2>&1")
end