Skip to content

Instantly share code, notes, and snippets.

@Soft
Last active August 29, 2015 14:26
Show Gist options
  • Save Soft/489c89bac15f8bc57044 to your computer and use it in GitHub Desktop.
Save Soft/489c89bac15f8bc57044 to your computer and use it in GitHub Desktop.
Handy file browser using tmenu
function browse {
local selection=$(ls -a | tmenu -l $(tput lines))
if [[ -d "$selection" && "$selection" != "." ]]; then
cd "$selection"
browse "$(pwd)"
elif [[ -f "$selection" ]]; then
xdg-open "$selection"
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment