Skip to content

Instantly share code, notes, and snippets.

@literalplus
Created November 15, 2016 08:55
Show Gist options
  • Save literalplus/702b90d0102b9e2c2b2a4f12b6f34885 to your computer and use it in GitHub Desktop.
Save literalplus/702b90d0102b9e2c2b2a4f12b6f34885 to your computer and use it in GitHub Desktop.
A thin wrapper around gnome-screenshot that allows to open the created screenshot in a given application
#!/bin/bash
# MIT License
#
# screenwrap-open.sh
# Copyright (c) 2016 Philipp Nowak
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
if [[ $# -lt 1 ]]; then
echo "screenwrap-open <save-basedir> <application> [options for backend]"
echo " e.g.: screenwrap-open /tmp/ viewnior -a"
echo " opens new area screenshot in Viewnior, saved in /tmp with datetime"
echo " see gnome-screenshot --help for available options."
exit 1
fi
BASE_PATH="${1%/}" # strip trailing slashes
DATED_DIR="$(date +%Y/%m)"
DIR_PATH="$BASE_PATH""/""$DATED_DIR"
OPEN_APP="$2"
FILE_PATH="$DIR_PATH""/""$(date +%Y-%m-%d_%H:%m:%S.png)"
mkdir -p "$DIR_PATH"
gnome-screenshot -f "$FILE_PATH" "${@:3}"
if [[ -f $FILE_PATH ]]; then
"$OPEN_APP" "$FILE_PATH"
else
echo "screenwrap-open: gnome-screenshot did not create the file."
echo " Did you abort the operation?"
echo " File: $FILE_PATH"
exit 2
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment