blob: 04c4f1bb1899faf220c96b9646ead86e621cf59e (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/sh
# Prevent the AppImage prompting the user to create a Desktop file
# in ~/.local when we already have one in /usr/share.
DESKTOPINTEGRATION=no
export DESKTOPINTEGRATION
exec /usr/share/etcher/Etcher-linux-x64.AppImage
|