17 lines
425 B
Lua
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 &"
|
|
)
|