summarylogtreecommitdiffstats
path: root/spearmint-server.launcher
blob: 365dbf805a416b77599817a6696b735908241442 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

OLDDIR=${HOME}/.spearmint
NEWDIR=${HOME}/.local/share/spearmint

if [ -d "${OLDDIR}" ];
then
	if [ ! -f "${OLDDIR}/.nomove" ];
	then
		mv ${OLDDIR} ${NEWDIR}
	fi
fi

cd /opt/spearmint
/opt/spearmint/spearmint-server +set sv_pure 0 ${*}