From d1da40494bbfdeaa71943ce9f6fcab0668c5f69a Mon Sep 17 00:00:00 2001 From: Fr4nz D13trich Date: Sat, 27 Dec 2025 12:07:28 +0100 Subject: [PATCH] Log view function extended --- helium_auto_update.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/helium_auto_update.sh b/helium_auto_update.sh index a7d8ecf..e06b9cd 100755 --- a/helium_auto_update.sh +++ b/helium_auto_update.sh @@ -181,7 +181,13 @@ script_version() { ### SHOW LOG show_log() { - xdg-open $LOG + if [ -f "$LOG" ] ; then + xdg-open $LOG + + else + notify-send -i "$ICON" "Helium Helper" "No log created yet" + + fi } ### HELP