Skip to content

Instantly share code, notes, and snippets.

@oliverguenther
Created June 26, 2023 07:39
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 oliverguenther/cbcf1c5d1e6c1e137902664070121541 to your computer and use it in GitHub Desktop.
Save oliverguenther/cbcf1c5d1e6c1e137902664070121541 to your computer and use it in GitHub Desktop.
Open helper script for guake
!/bin/bash
name=$1
line=$2
file "${name}" | grep -q "text"
if [ $? -ne 0 ]; then
xdg-open ${name}
elif [[ ${name} == *"capybara/screenshot"* ]];then
xdg-open ${name}
else
/usr/local/bin/mine --line ${line:-1} ${name}
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment