12 lines
No EOL
238 B
Bash
Executable file
12 lines
No EOL
238 B
Bash
Executable file
#!/bin/bash
|
|
TMP=/tmp/Helium
|
|
add_launcher() {
|
|
if [ -f "$INSTALL_PATH/helium-browser.AppImage" ] ; then
|
|
|
|
|
|
else
|
|
echo -e "\n ${RED}Helium AppImage not found! Can't add launcher...${CRS}"
|
|
exit
|
|
|
|
fi
|
|
} |