|
#!/bin/sh
|
|
|
|
# links to this script disable wayland backends
|
|
# to workaround wayland incompatibilities
|
|
|
|
unset GDK_BACKEND
|
|
unset QT_QPA_PLATFORM
|
|
|
|
# name of the link that was called
|
|
called_script=$(basename "$0")
|
|
|
|
real_bin=$(which --skip-tilde "$called_script")
|
|
"${real_bin}" "$@" |