blob: 267cbf5b7e08f413d2e8cc8d27256252d1cd5c33 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
if test -z "${XDG_RUNTIME_DIR}"; then
export XDG_RUNTIME_DIR=/tmp/$(id -u)-runtime-dir
if ! test -d "${XDG_RUNTIME_DIR}"; then
mkdir "${XDG_RUNTIME_DIR}"
chmod 0700 "${XDG_RUNTIME_DIR}"
fi
fi
# Sway fixes for firefox and screensharing
export MOZ_ENABLE_WAYLAND="1"
export XDG_CURRENT_DESKTOP=sway
export QT_QPA_PLATFORM="wayland-egl"
# Connect to VPN
doas $HOME/vpn.sh
|