#!/bin/bash IFS=$'\n' games=$(cat /home/dominic/.steam/steam/steamapps/*.acf | grep "\"name\"" | cut -c 11- | rev | cut -c 2- | rev) search=$(echo "$games" | sort | dmenu -i) if [ -z $search ]; then echo "nope" exit fi appid=$(grep "$search" /home/dominic/.steam/steam/steamapps/*.acf | head -n 1 | sed 's/.*_//g' | sed -e 's/\.acf.*$//g' ) steam steam://rungameid/$appid