summarylogtreecommitdiffstats
path: root/unetbootin.sh
blob: 4e85a7769f7b6997fe507ca6ee0c0b652c943990 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/bash

export QT_X11_NO_MITSHM=1

if [ $(command -v pkexec) ]; then
  pkexec --disable-internal-agent '/usr/bin/unetbootin.elf' "$@"
else
  '/usr/bin/unetbootin.elf' "$@"
fi