Added the local-cache to avoiding the permission problem in /tmp

This commit is contained in:
2026-03-31 22:39:04 +01:00
parent 782aff492c
commit 2d58116014

View File

@@ -24,8 +24,9 @@ colorize() {
function dashboard_fast() { function dashboard_fast() {
#### CHANGABLE OPTIONS #### #### CHANGABLE OPTIONS ####
ISTHISVM=0 # Change to 1 if this is a VM. This will remove the temperature bit. ISTHISVM=0 # Change to 1 if this is a VM. This will remove the temperature bit.
MIN_CHECK_IP=30 # Change this value to set the timing cache for checking the public IP MIN_CHECK_IP=30 # Change this value to set the timing cache for checking the public IP.
MIN_CHECK_UPDATE=120 # Change this value to set the timing cache for checking updates. MIN_CHECK_UPDATE=120 # Change this value to set the timing cache for checking updates.
LOCAL_CACHE=1 # Change this value to 1 if you want to create the local cache in the ~/.bashrc.d/.dashboard_cache.
@@ -41,7 +42,11 @@ function dashboard_fast() {
#### Cache #### #### Cache ####
CACHE_DIR="/tmp/.dashboard_cache" if [ $LOCAL_CACHE -ne 0 ]; then
CACHE_DIR="/tmp/.dashboard_cache"
else
CACHE_DIR="/home/$(whoami)/.bashrc.d/.dashboard_cache"
fi
mkdir -p "$CACHE_DIR" mkdir -p "$CACHE_DIR"
#### Overview #### #### Overview ####