From e83683f198b4dd01d21e65a0e1cbee326d4fb937 Mon Sep 17 00:00:00 2001 From: UltimateByte Date: Thu, 19 Jan 2017 00:45:15 +0100 Subject: [PATCH] fn_installed_mods_lightlist --- lgsm/functions/mods_core.sh | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/lgsm/functions/mods_core.sh b/lgsm/functions/mods_core.sh index c77c3364e..b8084cbcf 100644 --- a/lgsm/functions/mods_core.sh +++ b/lgsm/functions/mods_core.sh @@ -438,6 +438,28 @@ fn_installed_mods_list(){ echo "" } +# Display a simple list of installed mods +fn_installed_mods_lightlist(){ + # How many mods installed + installedmodscount="$(cat "${modslockfilefullpath}" | wc -l)" + if [ -f "${modslockfilefullpath}" ]&&[ $installedmodscount -gt 0 ]; then + echo "=================================" + echo "Installed mods/addons + # Set variables + installedmodsline="1" + installedmodslist=() + # Loop through mods + while [ $installedmodsline -le $installedmodscount ]; do + currentmod="$(sed "${installedmodsline}q;d" "${modslockfilefullpath}" )" + fn_mod_get_info_from_command + echo -e " * \e[1m${modprettyname}\e[0m" + installedmodslist+=( "${modcommand}" ) + let installedmodsline=installedmodsline+1 + done + echo "" + fi +} + # Get details of a mod any (relevant and unique, such as full mod name or install command) value fn_mod_get_info_from_command(){ # Variable to know when job is done