1
0
mirror of https://gitea.blesmrt.net/mikaela/scripts.git synced 2025-03-10 16:50:39 +01:00

11 lines
248 B
Plaintext
Raw Normal View History

#!/usr/bin/env bash
set -x
if [ -f /snap/bin/vlc ]; then
# https://bugs.launchpad.net/ubuntu/+source/snapd/+bug/1951491/comments/105
export DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/$(id -u)/bus
snap run vlc "$@"
else
/usr/bin/vlc
fi
set +x