Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #! /usr/bin/env bash
- ###################################################
- #
- # Copyright (C) 2008, 2009, 2010 Mario Kemper <mario.kemper@googlemail.com> and Shutter Team
- #
- # This file is part of Shutter.
- #
- # Shutter is free software; you can redistribute it and/or modify
- # it under the terms of the GNU General Public License as published by
- # the Free Software Foundation; either version 3 of the License, or
- # (at your option) any later version.
- #
- # Shutter is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU General Public License for more details.
- #
- # You should have received a copy of the GNU General Public License
- # along with Shutter; if not, write to the Free Software
- # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- #
- ###################################################
- TEXTDOMAIN=shutter-plugins
- TEXTDOMAINDIR=$SHUTTER_INTL
- PLUGIN_NAME=$"enter a name here"
- PLUGIN_SORT=$"enter a category here, e.g. Effect"
- PLUGIN_TIP=$"enter a tooltip"
- PLUGIN_EXT="image/png;image/bmp;image/jpeg"
- if [[ "${1}" = "name" ]];then
- echo "${PLUGIN_NAME}"
- exit 0
- elif [[ "${1}" = "sort" ]];then
- echo "${PLUGIN_SORT}"
- exit 0
- elif [[ "${1}" = "tip" ]];then
- echo "${PLUGIN_TIP}"
- exit 0
- elif [[ "${1}" = "ext" ]];then
- echo "${PLUGIN_EXT}"
- exit 0
- fi
- FILE="${1}"
- WIDTH="${2}"
- HEIGHT="${3}"
- #FILEYTPE="${4}"
- #GEO="${2}x${3}"
- <insert your code here>
- exit 0
Add Comment
Please, Sign In to add comment