summarylogtreecommitdiffstats
path: root/spearmint.launcher
blob: 9acd791ea9109849e62ca84954be68102a981a48 (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 +set sv_pure 0 ${*}