my xfce4 dotfiles
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
305 B

3 years ago
  1. open_lighthouse_ticket () {
  2. if [ ! -f .lighthouse-url ]; then
  3. echo "There is no .lighthouse-url file in the current directory..."
  4. return 0
  5. fi
  6. lighthouse_url=$(cat .lighthouse-url)
  7. echo "Opening ticket #$1"
  8. open_command "$lighthouse_url/tickets/$1"
  9. }
  10. alias lho='open_lighthouse_ticket'