blob: 7f260f3c379ac739e18344058b9c0188a4e078f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
export GTK_THEME=Adwaita:dark
export XDG_SESSION_TYPE=x11
#if command -v dbus-launch >/dev/null && test -z "${DBUS_SESSION_BUS_ADDRESS}"; then
# eval $(dbus-launch --sh-syntax --exit-with-session)
#fi
# Ensure XDG_RUNTIME_DIR is set
#unset XDG_RUNTIME_DIR
#export XDG_RUNTIME_DIR=$(mktemp -d /tmp/$(id -u)-runtime-dir.XXX)
#xset -dpms # screenblanking is fucking annoying on a desktop
#xset s off # and it blanks in the middle of mpv playing
#xrandr --output DisplayPort-0 --auto --left-of HDMI-A-0
xscreensaver --no-splash &
gentoo-pipewire-launcher restart &
(while true; do xprop -root -set WM_NAME "$(date +"%F %I:%M:%S %p")" || exit; sleep .5; done) &
exec dbus-launch --exit-with-session dwm
|