1#!/bin/sh
2# ASUS check if spectrum is running
3
4if [ -z "$(pidof spectrum)" ];
5then
6	#echo "spectrum is not running"
7	/bin/spectrum
8fi
9