Fix some typo

This commit is contained in:
Pavan Jadhaw 2018-05-21 08:49:55 +05:30 committed by GitHub
commit 3b0e102c19
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -104,89 +104,89 @@ lockselect() {
usage() { usage() {
echo "Important : Update the image cache, Ex: betterlockscreen -u path/to/image.jpg" echo "Important: Update the image cache (e.g. betterlockscreen -u path/to/image.jpg)."
echo " Image cache must be updated to initially configure or update wallpaper used" echo " Image cache must be updated to initially configure or update wallpaper used"
echo echo
echo echo
echo "See : https://github.com/pavanjadhaw/betterlockscreen for additional info..." echo "See: https://github.com/pavanjadhaw/betterlockscreen for additional info..."
echo echo
echo echo
echo "Options:" echo "Options:"
echo echo
echo " -h --help" echo " -h --help"
echo " For help. Ex: betterlockscreen -h or betterlockscreen --help" echo " For help (e.g. betterlockscreen -h or betterlockscreen --help)."
echo echo
echo echo
echo " -u --update" echo " -u --update"
echo " to update image cache, you should do this before using any other options" echo " to update image cache, you should do this before using any other options"
echo " Ex: betterlockscreen -u path/to/image.png when image.png is custom background" echo " E.g: betterlockscreen -u path/to/image.png when image.png is custom background"
echo " Or you can use betterlockscreen -u path/to/imagedir and a random file will be selected" echo " Or you can use betterlockscreen -u path/to/imagedir and a random file will be selected."
echo echo
echo echo
echo " -l --lock" echo " -l --lock"
echo " to lock screen, Ex. betterlockscreen -l" echo " to lock screen (e.g. betterlockscreen -l)"
echo " you can also use dimmed or blurred background for lockscreen" echo " you can also use dimmed or blurred background for lockscreen."
echo " Ex: betterlockscreen -l dim (for dimmed background)" echo " E.g: betterlockscreen -l dim (for dimmed background)"
echo " Ex: betterlockscreen -l blur (for blurred background)" echo " E.g: betterlockscreen -l blur (for blurred background)"
echo " Ex: betterlockscreen -l dimblur (for dimmed + blurred background)" echo " E.g: betterlockscreen -l dimblur (for dimmed + blurred background)"
echo echo
echo echo
echo " -s --suspend" echo " -s --suspend"
echo " to suspend system and lock screen, Ex. betterlockscreen -s" echo " to suspend system and lock screen (e.g. betterlockscreen -s)"
echo " you can also use dimmed or blurred background for lockscreen" echo " you can also use dimmed or blurred background for lockscreen."
echo " Ex: betterlockscreen -s dim (for dimmed background)" echo " E.g: betterlockscreen -s dim (for dimmed background)"
echo " Ex: betterlockscreen -s blur (for blurred background)" echo " E.g: betterlockscreen -s blur (for blurred background)"
echo " Ex: betterlockscreen -s dimblur (for dimmed + blurred background)" echo " E.g: betterlockscreen -s dimblur (for dimmed + blurred background)"
echo echo
echo echo
echo " -w --wall" echo " -w --wall"
echo " you can also set lockscreen background as wallpaper" echo " you can also set lockscreen background as wallpaper"
echo " to set wallpaper. Ex betterlockscreen -w or betterlockscreen --wall" echo " to set wallpaper (e.g. betterlockscreen -w or betterlockscreen --wall)"
echo " you can also use dimmed or blurred variants" echo " you can also use dimmed or blurred variants."
echo " Ex: betterlockscreen -w dim (for dimmed wallpaper)" echo " E.g: betterlockscreen -w dim (for dimmed wallpaper)"
echo " Ex: betterlockscreen -w blur (for blurred wallpaper)" echo " E.g: betterlockscreen -w blur (for blurred wallpaper)"
echo " Ex: betterlockscreen -w dimblur (for dimmed + blurred wallpaper)" echo " E.g: betterlockscreen -w dimblur (for dimmed + blurred wallpaper)"
echo echo
echo echo
echo " -r --resolution" echo " -r --resolution"
echo " to be used after -u" echo " to be used after -u"
echo " used to set a custom resolution for the image cache." echo " used to set a custom resolution for the image cache."
echo " Ex: betterlockscreen -u path/to/image.png -r 1920x1080" echo " E.g: betterlockscreen -u path/to/image.png -r 1920x1080"
echo " Ex: betterlockscreen -u path/to/image.png --resolution 3840x1080" echo " E.g: betterlockscreen -u path/to/image.png --resolution 3840x1080"
echo echo
echo echo
echo " -b --blur" echo " -b --blur"
echo " to be used after -u" echo " to be used after -u"
echo " used to set blur intensity. Default to 1." echo " used to set blur intensity. Default to 1."
echo " Ex: betterlockscreen -u path/to/image.png -b 3" echo " E.g: betterlockscreen -u path/to/image.png -b 3"
echo " Ex: betterlockscreen -u path/to/image.png --blur 0.5" echo " E.g: betterlockscreen -u path/to/image.png --blur 0.5"
} }
# Options # Options
case "$1" in case "$1" in
"") "")
if [ ! -f $l_dim ]; then if [ ! -f $l_dim ]; then
echo "Important : Update the image cache, Ex. betterlockscreen -u path/to/image.jpg" echo "Important: Update the image cache (e.g. betterlockscreen -u path/to/image.jpg)."
echo echo
echo " Image cache must be updated to initially configure or update wallpaper used" echo " Image cache must be updated to initially configure or update wallpaper used"
echo echo
echo "See also : For other set of options and help use help command." echo "See also: For other set of options and help use help command."
echo "Ex. betterlockscreen -h or betterlockscreen --help" echo "E.g. betterlockscreen -h or betterlockscreen --help"
echo echo
echo "See : https://github.com/pavanjadhaw/betterlockscreen for addition info..." echo "See: https://github.com/pavanjadhaw/betterlockscreen for addition info..."
exit 1 exit 1
else else
echo echo
echo "Seems you havent provided any argument, see below for usage info" echo "Seems you havent provided any argument, see below for usage info"
echo echo
echo "See also : For other set of options and help use help command." echo "See also: For other set of options and help use help command."
echo "Ex. betterlockscreen -h or betterlockscreen --help" echo "E.g. betterlockscreen -h or betterlockscreen --help"
echo echo
echo "See : https://github.com/pavanjadhaw/betterlockscreen for addition info..." echo "See: https://github.com/pavanjadhaw/betterlockscreen for addition info..."
echo echo
exit 1 exit 1
fi fi