mirror of
https://gitea.blesmrt.net/mikaela/scripts.git
synced 2024-12-22 18:52:46 +01:00
bash/usr-local-bin: add vlc-snap as a proof of concept
This commit is contained in:
parent
440c92fc57
commit
054f54a4c3
10
bash/usr-local-bin/vlc-snap
Executable file
10
bash/usr-local-bin/vlc-snap
Executable file
@ -0,0 +1,10 @@
|
||||
#!/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
|
Loading…
Reference in New Issue
Block a user