summarylogtreecommitdiffstats
path: root/install.sh
blob: e1df5a039875b5e28a72ece11c0e924e10e37591 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env bash

VERSION="160_55"

if [ -f /home/$(whoami)/.local/share/Kolossus-Launcher/Kolossus\ Launcher.x86_64 ]; then
	if [ $(cat /home/$(whoami)/.local/share/Kolossus-Launcher/version.txt) == $VERSION ]; then
		exec /home/$(whoami)/.local/share/Kolossus-Launcher/Kolossus\ Launcher.x86_64
	else
		cp -r /opt/Kolossus-Launcher /home/$(whoami)/.local/share
		echo $VERSION > /home/$(whoami)/.local/share/Kolossus-Launcher/version.txt
		exec /home/$(whoami)/.local/share/Kolossus-Launcher/Kolossus\ Launcher.x86_64
	fi
else
	cp -r /opt/Kolossus-Launcher /home/$(whoami)/.local/share
	echo $VERSION > /home/$(whoami)/.local/share/Kolossus-Launcher/version.txt
	exec /home/$(whoami)/.local/share/Kolossus-Launcher/Kolossus\ Launcher.x86_64
fi