diff options
| -rw-r--r-- | config/fastfetch/config-compact.jsonc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/fastfetch/config-compact.jsonc b/config/fastfetch/config-compact.jsonc index 0403b79d..358efcc5 100644 --- a/config/fastfetch/config-compact.jsonc +++ b/config/fastfetch/config-compact.jsonc @@ -71,7 +71,7 @@ "type": "command", "key": " ", "keyColor": "magenta", - "text": "birth_install=$(stat -c %W /); current=$(date +%s); time_progression=$((current - birth_install)); days_difference=$((time_progression / 86400)); echo $days_difference days" + "text": "echo $(( ($(date +%s) - $(stat -c %W /)) / 86400 )) days" }, { "type": "custom", |
