diff options
author | Manuel Palenzuela <manuelpalenzuelamerino@gmail.com> | 2019-07-05 12:28:32 +0200 |
---|---|---|
committer | Manuel Palenzuela <manuelpalenzuelamerino@gmail.com> | 2019-07-05 12:28:32 +0200 |
commit | 0547da0b2f53ce470523461ede05699fc685c5f5 (patch) | |
tree | 3bb68b538433500b862332edf28d750e4daf47f7 | |
parent | Added timer command line option (diff) | |
download | smart-wallpaper-0547da0b2f53ce470523461ede05699fc685c5f5.tar.gz smart-wallpaper-0547da0b2f53ce470523461ede05699fc685c5f5.tar.bz2 smart-wallpaper-0547da0b2f53ce470523461ede05699fc685c5f5.zip |
Fixed help message
-rw-r--r-- | README.md | 2 | ||||
-rwxr-xr-x | smart-wallpaper | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md index 8c7adb7..96bd096 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ Usage: smart-wallpaper [FLAG]<br /> [-d]: NEEDED : daytime wallpaper file/folder<br /> [-n]: NEEDED : nighttime wallpaper file/folder<br /> [-l]: OPTIONAL : manual location (lat:long), if not added geoclue gets the location (requires internet)<br /> - [-t]: OPTIONAL : set the time period for the script to check if it is day or night<br /> + [-t]: OPTIONAL : set the time period (seconds) for the script to check if it is day or night<br /> [-h]: OPTIONAL : print help message Example: diff --git a/smart-wallpaper b/smart-wallpaper index 0200545..4de7073 100755 --- a/smart-wallpaper +++ b/smart-wallpaper @@ -26,7 +26,7 @@ print_usage() { echo " [-d]: NEEDED : daytime wallpaper file/folder" echo " [-n]: NEEDED : nighttime wallpaper file/folder" echo " [-l]: OPTIONAL : manual location (lat:long), if not added geoclue gets the location (requires internet)" - echo " [-t]: OPTIONAL : set the time period for the script to check if it is day or night " + echo " [-t]: OPTIONAL : set the time period (seconds) for the script to check if it is day or night " echo " [-h]: OPTIONAL : print help message" } |