9 lines
182 B
Bash
9 lines
182 B
Bash
#!/bin/sh
|
|
|
|
[ -f ~/.profile ] && . ~/.profile
|
|
|
|
# Create /run/user/$UID if not present (no systemd on Slackware)
|
|
mkdir -p /run/user/$(id -u)
|
|
chmod 700 /run/user/$(id -u)
|
|
|
|
exec stumpwm
|