17 lines
408 B
Bash
17 lines
408 B
Bash
#!/bin/sh
|
|
|
|
dbus-update-activation-environment --systemd DISPLAY XAUTHORITY
|
|
|
|
# startup
|
|
autorandr -c &
|
|
xss-lock -n screensaver -- lock &
|
|
/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 || # arch
|
|
/usr/lib/policykit-1-gnome/polkit-gnome-authentication-agent-1 || # debian
|
|
/usr/libexec/polkit-gnome-authentication-agent-1 & # fedora
|
|
picom &
|
|
gammastep 2> /dev/null &
|
|
sbar &
|
|
flameshot &
|
|
|
|
exec dwm
|