summaryrefslogtreecommitdiff
path: root/old/config/fish/functions/__format_time.fish
diff options
context:
space:
mode:
Diffstat (limited to 'old/config/fish/functions/__format_time.fish')
-rw-r--r--old/config/fish/functions/__format_time.fish27
1 files changed, 0 insertions, 27 deletions
diff --git a/old/config/fish/functions/__format_time.fish b/old/config/fish/functions/__format_time.fish
deleted file mode 100644
index 298e4cb..0000000
--- a/old/config/fish/functions/__format_time.fish
+++ /dev/null
@@ -1,27 +0,0 @@
-function __format_time -d "Format milliseconds to a human readable format"
- set -l milliseconds $argv[1]
- set -l seconds (math "$milliseconds / 1000 % 60")
- set -l minutes (math "$milliseconds / 60000 % 60")
- set -l hours (math "$milliseconds / 3600000 % 24")
- set -l days (math "$milliseconds / 86400000")
- set -l time
- set -l threshold 5
-
- if test $days -gt 0
- set time (command printf "$time%sd " $days)
- end
-
- if test $hours -gt 0
- set time (command printf "$time%sh " $hours)
- end
-
- if test $minutes -gt 0
- set time (command printf "$time%sm " $minutes)
- end
-
- if test $seconds -gt $threshold
- set time (command printf "$time%ss " $seconds)
- end
-
- echo -e $time
-end