2016-02-01 12:15:09 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
if [ -r /etc/profile.d/qubes-session.sh ]; then
|
2017-09-30 04:56:02 +02:00
|
|
|
# shellcheck disable=SC1091
|
2016-02-01 12:15:09 +01:00
|
|
|
. /etc/profile.d/qubes-session.sh
|
|
|
|
fi
|
|
|
|
|
2016-02-02 03:20:29 +01:00
|
|
|
# gvfs-open, kde-open, and possibly others don't wait for editor to be
|
|
|
|
# closed, which is critical behaviour for DisposableVM (which gets destroyed
|
|
|
|
# after this process exits)
|
|
|
|
export DE=generic
|
|
|
|
exec xdg-open "$@"
|