From 4895be10db9abe59f1004421babba171ab586609 Mon Sep 17 00:00:00 2001 From: XargonWan Date: Mon, 4 Mar 2024 14:26:50 +0100 Subject: [PATCH] QUIT: quit_retrodeck is now enhanced --- functions/functions.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/functions/functions.sh b/functions/functions.sh index 75ab5206..dd8ee2bf 100644 --- a/functions/functions.sh +++ b/functions/functions.sh @@ -717,13 +717,15 @@ branch_selector() { } quit_retrodeck() { - pkill -f retrodeck - pkill -f es-de + log i "Quitting ES-DE" + pkill -f "es-de" + log i "Shutting down RetroDECK's framework" + pkill -f "retrodeck" + log i "See you next time" } start_retrodeck() { easter_eggs # Check if today has a surprise splashscreen and load it if so - # normal startup log i "Starting RetroDECK v$version" es-de --home /var/config/ }