2026-07-30 05:04:14 -04:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
|
|
[ -f ~/.profile ] && . ~/.profile
|
|
|
|
|
|
2026-08-01 13:15:36 -04:00
|
|
|
# Create /run/user/$UID if not present (no systemd on Slackware)
|
|
|
|
|
mkdir -p /run/user/$(id -u)
|
|
|
|
|
chmod 700 /run/user/$(id -u)
|
|
|
|
|
|
2026-08-02 12:41:30 -04:00
|
|
|
# Start PipeWire audio stack
|
|
|
|
|
pipewire &
|
|
|
|
|
pipewire-pulse &
|
|
|
|
|
wireplumber &
|
|
|
|
|
|
2026-08-09 15:28:47 -04:00
|
|
|
# Compositor - eliminates screen tearing
|
2026-09-05 20:10:45 -04:00
|
|
|
# picom --backend glx &
|
2026-08-09 15:28:47 -04:00
|
|
|
|
2026-07-30 05:04:14 -04:00
|
|
|
exec stumpwm
|