* Original wallpaper copy will also be stored in the cache

* Updated the Important message and fixed the incorrect flag -g to -u
 Please enter the commit message for your changes. Lines starting

* Removed superfluous blank line

* Changed conditional check to match all the others

* Capitalized first word of sentence
This commit is contained in:
Steven Carpenter 2017-12-13 18:49:59 -08:00 committed by Pavan Jadhaw
parent 14ead9b9f1
commit ded2b5d516

17
lock.sh
View file

@ -4,12 +4,12 @@
# Github Profile : https://github.com/pavanjadhaw # Github Profile : https://github.com/pavanjadhaw
# Project Repository : https://github.com/pavanjadhaw/betterlockscreen # Project Repository : https://github.com/pavanjadhaw/betterlockscreen
# create folder in ~/.cache/i3lock directory
folder="$HOME/.cache/i3lock"
# ratio for rectangle to be drawn for time background on lockscreen # ratio for rectangle to be drawn for time background on lockscreen
# Original Image # Original Image
orig_wall=$HOME/.wall.png orig_wall="$folder/.wall.png"
# create folder in /tmp directory
folder="$HOME/.cache/i3lock"
# Versions (from here) # Versions (from here)
# You can use these images to set different versions as wallpaper # You can use these images to set different versions as wallpaper
@ -94,7 +94,8 @@ case "$1" in
;; ;;
-h | --help) -h | --help)
echo "Important : Update the image cache, Ex: ./lock.sh -g path/to/image.jpg" echo "Important : Update the image cache, Ex: ./lock.sh -u path/to/image.jpg"
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..."
@ -185,7 +186,6 @@ case "$1" in
feh --bg-fill $dimblur feh --bg-fill $dimblur
;; ;;
esac esac
;; ;;
-u | --update) -u | --update)
@ -205,7 +205,8 @@ case "$1" in
y_res=$(xdpyinfo | grep dimensions | sed -r 's/^[^0-9]*([0-9]+x[0-9]+).*$/\1/') y_res=$(xdpyinfo | grep dimensions | sed -r 's/^[^0-9]*([0-9]+x[0-9]+).*$/\1/')
# create folder # create folder
if ! [[ -d $folder ]]; then if [ ! -d $folder ]; then
echo "Creating '$folder' directory to cache processed images."
mkdir -p "$folder" mkdir -p "$folder"
fi fi
@ -247,7 +248,7 @@ case "$1" in
# lockscreen backgrounds # lockscreen backgrounds
echo echo
echo "caching images for faster screen locking" echo "Caching images for faster screen locking"
# resized # resized
convert "$resized" -draw "fill black fill-opacity 0.4 $rectangles" "$l_resized" convert "$resized" -draw "fill black fill-opacity 0.4 $rectangles" "$l_resized"