Enviado em 04/10/2019 - 16:23h
Instalei o unetbootin no meu sistema e queria executa-lo como um programa comum.
[Desktop Entry]
Version=1.0
Name=UNetbootin
Comment=Tool for creating Live USB drives
Categories=Application;System;
Exec=/usr/bin/unetbootin_asroot
Terminal=false
Type=Application
Name[en_US]=UNetbootin
GenericName[en_US]=UNetbootin
Comment[en_US]=Tool for creating Live USB drives
Icon=/usr/share/unetbootin/unetbootin_128.png
#!/bin/bash
if hash gksu 2> /dev/null; then
gksu env QT_X11_NO_MITSHM=1 unetbootin
elif hash kdesu 2> /dev/null; then
kdesu env QT_X11_NO_MITSHM=1 unetbootin
elif hash gnomesudo 2> /dev/null; then
gnomesudo env QT_X11_NO_MITSHM=1 unetbootin
elif hash kdesudo 2> /dev/null; then
kdesudo env QT_X11_NO_MITSHM=1 unetbootin
elif hash pkexec 2> /dev/null; then
pkexec env DISPLAY=$DISPLAY XAUTHORITY=$XAUTHORITY QT_X11_NO_MITSHM=1 unetbootin
else
unetbootin
fi