17 lines
694 B
Bash
17 lines
694 B
Bash
#!/usr/bin/env sh
|
|
test -z "$DBUS_SESSION_BUS_ADDRESS" && eval $(dbus-launch --exit-with-session --sh-syntax)
|
|
systemctl --user import-environment DISPLAY XAUTHORITY
|
|
command -v dbus-update-activation-environment >/dev/null 2>&1 && dbus-update-activation-environment DISPLAY XAUTHORITY
|
|
xrdb ~/.Xresources &
|
|
hsetroot -solid "#282a36" &
|
|
picom &
|
|
xbanish &
|
|
dunst &
|
|
clipmenud &
|
|
trayer --edge bottom --align right --margin 0 --widthtype request --SetDockType true --transparent true --alpha 255 &
|
|
nm-applet &
|
|
mullvad-gui &
|
|
sxhkd &
|
|
xrandr --output DP-1 --primary --mode 2560x1440 --rotate normal --rate "164.99" --output DP-2 --mode 2560x1440 --rotate normal --rate "164.99" --right-of DP-1 &
|
|
exec bspwm
|