diff options
-rw-r--r-- | README.rst | 2 | ||||
-rwxr-xr-x | update-tool/cronjob-for-check-updates.sh | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -5,7 +5,7 @@ What it contains ---------------- Custom applications for FOSSEE-OS. -[http://netbook.fossee.in] +[http://laptop.fossee.in] These tools are essentially simple bash scripts using zenity/dialog/easybashgui/notify-send for UI interactions. diff --git a/update-tool/cronjob-for-check-updates.sh b/update-tool/cronjob-for-check-updates.sh index 53d5e85..eaf2c3a 100755 --- a/update-tool/cronjob-for-check-updates.sh +++ b/update-tool/cronjob-for-check-updates.sh @@ -15,7 +15,7 @@ return_text=$(git fetch --tags --dry-run 2>&1) # Check for return code, it will be 0 if internet is available [ $? -eq 0 ] && [ $(echo $return_text|wc -l) -ge 1 ] && \ -sudo -u $user /usr/bin/notify-send -i "path/to//opt/FOSSEE-netbook-tools/update-tool/patcher.png" \ +sudo -u $user /usr/bin/notify-send -i "/opt/FOSSEE-netbook-tools/update-tool/patcher.png" \ "FOSSEE Updates available" \ "menu -> FOSSEE-Tools -> FOSSEE-updates" |