Skip to content

Instantly share code, notes, and snippets.

@intrntbrn
Last active December 23, 2022 13:02
Show Gist options
  • Save intrntbrn/86cad9dcc5d484d0a4708ec19c9d5986 to your computer and use it in GitHub Desktop.
Save intrntbrn/86cad9dcc5d484d0a4708ec19c9d5986 to your computer and use it in GitHub Desktop.
steam game launcher menu (dmenu, rofi, fzf) without desktop files
#!/bin/sh
dir="$HOME/.local/share/Steam/steamapps"
cmd="dmenu -i -p Steam"
find "$dir" -maxdepth 1 -type f -name '*.acf' -exec awk -F '"' '/"appid|name/{ printf $4 "|" } END { print "" }' {} \; | column -t -s '|' | sort -k 2 | $cmd | awk '{ print $1 }' | xargs -I {} steam steam://rungameid/{}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment