#!/bin/bash
[ -e /proc/pandora ] || exit
[ -f scores.txt ] || exit
hi0=0
[ -f highscore.txt ] && hi0=`<highscore.txt`
hi=`<scores.txt sort -nr | head -n1`
[ "$hi" -gt "$hi0" ] || exit
notify-send -u normal "Rescue" "highscore: $hi" -i "$PWD/icon.png"
iwconfig 2>/dev/null | grep -q Link || exit
./sc so push rescue pandora "$hi" &&
  echo "$hi" >highscore.txt
