neodotfiles/user/.config/awesome/autostart.lua
2023-06-24 10:15:08 -04:00

17 lines
425 B
Lua

local awful = require("awful")
-- session manager
awful.util.spawn_with_shell(
"/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 &"
)
-- set wallpaper
awful.util.spawn_with_shell(
"$HOME/.fehbg &"
)
-- automatically hide the cursor
awful.util.spawn_with_shell(
"unclutter --hide-on-touch &"
)
-- compositor
awful.util.spawn_with_shell(
"picom --experimental-backends --config ~/.config/picom/picom.conf &"
)