18 lines
468 B
Bash
18 lines
468 B
Bash
#!/bin/sh
|
|
|
|
dbus-update-activation-environment --systemd DISPLAY XAUTHORITY
|
|
|
|
export QT_STYLE_OVERRIDE=Materia-dark
|
|
|
|
# startup
|
|
autorandr -c &
|
|
xss-lock -n "feh --fullscreen '$XDG_CONFIG_HOME/wallpapers/lock.png'" -- 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 &
|
|
sbar &
|
|
|
|
exec dwm
|