huge longrun improvements

This commit is contained in:
fatalerrors
2026-03-06 17:46:26 +01:00
parent 39a7e7b40f
commit 2ece711e1a
17 changed files with 1233 additions and 481 deletions

View File

@@ -36,7 +36,7 @@
# ------------------------------------------------------------------------------
# Show profile version
# ------------------------------------------------------------------------------
# Usage: ver
ver()
{
[[ -z $PROFVERSION ]] && \
@@ -45,10 +45,12 @@ ver()
disp "Profile version $PROFVERSION."
}
export -f ver
# ------------------------------------------------------------------------------
# ------------------------------------------------------------------------------
# Display weather of the given city (or default one)
# ------------------------------------------------------------------------------
# Usage: meteo [city1 city2 ...]
meteo()
{
local encoded cities=("$@")
@@ -61,10 +63,12 @@ meteo()
done
}
export -f meteo
# ------------------------------------------------------------------------------
# ------------------------------------------------------------------------------
# Display system general information
# ------------------------------------------------------------------------------
# Usage: showinfo
showinfo()
{
echo -e "\n"
@@ -99,6 +103,7 @@ showinfo()
fi
}
export -f showinfo
# ------------------------------------------------------------------------------
# EOF