neodotfiles/user/.config/awesome/autostart.lua
Clay Gomera 28805ffc82 updated
2023-02-20 15:20:24 -04:00

21 lines
455 B
Lua

local awful = require("awful")
-- Session manager
awful.util.spawn_with_shell(
"lxpolkit &"
)
-- Wallpapers manager
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 &"
)
-- Power manager
awful.util.spawn_with_shell(
"xfce4-power-manager &"
)