Skip to content

Instantly share code, notes, and snippets.

@louisswarren
Last active September 2, 2019 05:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save louisswarren/f59cc50a9b8678a531308b25fc42ea27 to your computer and use it in GitHub Desktop.
Save louisswarren/f59cc50a9b8678a531308b25fc42ea27 to your computer and use it in GitHub Desktop.
Dmenu is amazing
#!/bin/sh
cd ~
files=$(find * -not -path "*/.git/*" -not -name "*.agdai")
choice=$(echo "$files" | dmenu -i -p "xdg-open" $@)
xdg-open "$choice"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment