mirror of
https://github.com/dylanaraps/neofetch.git
synced 2025-10-03 16:51:29 +00:00
Merge branch 'master' of https://github.com/dylanaraps/neofetch
This commit is contained in:
10
neofetch
10
neofetch
@@ -1216,8 +1216,14 @@ get_uptime() {
|
||||
# Get uptime in seconds.
|
||||
case "$os" in
|
||||
"Linux" | "Windows" | "MINIX")
|
||||
seconds="$(< /proc/uptime)"
|
||||
seconds="${seconds/.*}"
|
||||
if [[ -r /proc/uptime ]]; then
|
||||
seconds="$(< /proc/uptime)"
|
||||
seconds="${seconds/.*}"
|
||||
else
|
||||
boot="$(date -d"$(uptime -s)" +%s)"
|
||||
now="$(date +%s)"
|
||||
seconds="$((now - boot))"
|
||||
fi
|
||||
;;
|
||||
|
||||
"Mac OS X" | "iPhone OS" | "BSD" | "FreeMiNT")
|
||||
|
Reference in New Issue
Block a user