Created
October 20, 2017 16:25
-
-
Save romuloceccon/93f2b07f9ea3152da94054675faf21bf to your computer and use it in GitHub Desktop.
Opens the printscreen file generated by Byobu via Shift+F7
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /bin/bash | |
| [[ -z "$BYOBU_RUN_DIR" ]] && \ | |
| echo "Not a Byobu session!" 1>&2 && exit 1 | |
| [[ ! -e $BYOBU_RUN_DIR/printscreen ]] && \ | |
| echo "No printscreen found! (try pressing Shift+F7)" 1>&2 && exit 1 | |
| geany $BYOBU_RUN_DIR/printscreen |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment