Normalise JSON. Update todo
[PreCom.git] / steam.sh
1 #!/bin/bash
2 export DISPLAY=:0.0
3
4 tenfoot=false
5
6 while getopts "t" opt; do
7 case $opt in
8 t)
9 tenfoot=true
10 ;;
11 \?)
12 echo "Invalid option: -$OPTARG" >&2
13 exit 1
14 ;;
15 esac
16 done
17
18
19 if [ $tenfoot = true ] ; then
20 steam-debian -480p -tenfoot > /dev/null 2>&1
21 else
22 steam-debian > /dev/null 2>&1
23 fi