dotfiles/config/xinitrc

18 lines
326 B
Text
Raw Normal View History

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
picom --backend glx --vsync &
2026-07-30 05:04:14 -04:00
exec stumpwm