blob: 4f7ef4811a3b270fefabc065fe51abd06657badc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
export GTK_THEME=Adwaita:dark
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)
gentoo-pipewire-launcher &
unclutter &
(while true; do xprop -root -set WM_NAME "VOL:$(wpctl get-volume @DEFAULT_AUDIO_SINK@ | cut -d ':' -f 2) | $(date +"%F %H:%M:%S %p")"; sleep .5; done) &
[ -f ~/.background ] && feh --bg-scale ~/.background
#(while true; do xprop -root -set WM_NAME "$(date +"%F %I:%M:%S %p")"; sleep .5; done) &
exec dwm
|