summaryrefslogtreecommitdiff
path: root/recipes-core/base-files/base-files/wayland-env.sh
blob: e3512961bbaf68ffe90dd1ecbd0236f81b85be90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

if test -z "$XDG_RUNTIME_DIR"; then
    export XDG_RUNTIME_DIR=/run/user/`id -u`
    if ! test -d "$XDG_RUNTIME_DIR"; then
        mkdir --parents $XDG_RUNTIME_DIR
        chmod 0700 $XDG_RUNTIME_DIR
    fi

    export XDG_SESSION_TYPE=unspecified
    export XDG_SESSION_CLASS=background
fi