1
0
Fork 0
mirror of https://github.com/lcpz/awesome-copycats.git synced 2026-03-23 14:05:11 +00:00
awesome-copycats/themes/vertex/startup.lua
Toma Adrian c09197f0da format
2023-10-10 14:59:56 +03:00

15 lines
412 B
Lua

local awful = require("awful")
local beautiful = require("beautiful")
local startup = {
awful.spawn.with_shell("nitrogen --set-zoom-fill --no-recurse --random --head=0 ~/Pictures/SFW/Nature"),
awful.spawn.with_shell("optimus-manager-qt"),
awful.spawn.with_shell("picom -b"),
-- Mute volume on startup
os.execute(string.format("amixer set Master 0%%")),
beautiful.volume.update(),
}
return startup