9 lines
174 B
Lua
9 lines
174 B
Lua
|
return {
|
||
|
init = function()
|
||
|
local conf = conf_dir .. "/modules/picom/picom.conf"
|
||
|
|
||
|
awful.spawn("killall picom")
|
||
|
awful.spawn("picom -b --conf \"" .. conf .. "\"")
|
||
|
end
|
||
|
}
|