You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
696 B
Bash
26 lines
696 B
Bash
#!/bin/bash
|
|
|
|
DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")"
|
|
|
|
function error {
|
|
echo -e "\\e[91m$1\\e[39m"
|
|
exit 1
|
|
}
|
|
|
|
if [ ! -f ~/hfs.exe ];then
|
|
wget https://www.rejetto.com/hfs/hfs.exe || error "Failed to download hfs.exe!"
|
|
fi
|
|
|
|
"${DIRECTORY}/manage" install-if-not-installed 'Wine (x86)' || error "Wine is required to run HTTPS File Server but it failed to install!"
|
|
|
|
echo "Creating menu button..."
|
|
echo "[Desktop Entry]
|
|
Type=Application
|
|
Version=1.0
|
|
Name=HTTPS File Server
|
|
Exec=wine $HOME/hfs.exe
|
|
Comment=Simple file sharing webserver
|
|
Icon=$(dirname "$0")/icon-64.png
|
|
Categories=Network;
|
|
StartupNotify=true" > ~/.local/share/applications/hfs.desktop
|