OBS-URL: https://build.opensuse.org/package/show/devel:BCI:Tumbleweed/xorg-image?expand=0&rev=16
14 lines
350 B
Bash
14 lines
350 B
Bash
#!/bin/bash
|
|
xset -dpms
|
|
xset s off
|
|
xset s noblank
|
|
|
|
[ ! -d "/home/user/xauthority" ] && mkdir -p "/home/user/xauthority"
|
|
touch /home/user/xauthority/.xauth
|
|
xauth -i -f /home/user/xauthority/.xauth generate :0 . trusted timeout 0
|
|
chown -R user:users /home/user/xauthority
|
|
|
|
( [ -f ~/.Xmodmap ] ) && DISPLAY=:0 xmodmap ~/.Xmodmap
|
|
|
|
exec icewm-session-lite
|