Skip to content

Instantly share code, notes, and snippets.

@debxp
Last active August 25, 2019 14:51
Show Gist options
  • Save debxp/65984830efc89f4d16ee05e27d5712b0 to your computer and use it in GitHub Desktop.
Save debxp/65984830efc89f4d16ee05e27d5712b0 to your computer and use it in GitHub Desktop.
#!/usr/bin/env bash
fonte="Monaco-15"
caminho="$(find $HOME -maxdepth 1 -type d | cut -d'/' -f4- | dmenu -i -l 15 -fn $fonte -p "Abrir: ")"
pasta=$(find $HOME/$caminho -type d | cut -d'/' -f5- | dmenu -l 15 -fn $fonte -i -p "~/$caminho/")
abrir="$HOME/$caminho/$pasta"
xdg-open $abrir
exit 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment