enhancement : Fixed the messy and long command (#3842)

This commit is contained in:
Ahum Maitra
2025-12-11 19:52:46 +05:30
committed by GitHub
parent c67856b9b6
commit 1c59f1ae62

View File

@@ -134,7 +134,7 @@
"type": "command", "type": "command",
"key": "󱦟 OS Age", "key": "󱦟 OS Age",
"keyColor": "magenta", "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": "uptime", "type": "uptime",