kujiu (@uberwald)
8ca6287fb1
-> Passwords in KeePassXC (access by keyring) -> Neomutt + Aerc (mail) -> vdirsyncer + khal + khard (calendar and contacts) zsh -> fish -> poezio (XMPP) -> newsboat (RSS with FreshRSS) -> toot (Mastodon client) vim -> neovim (with lunarvim) -> nvimpager (pager based on neovim) -> konsole With Nightfox theme.
12 lines
588 B
Fish
12 lines
588 B
Fish
function _tide_item_cmd_duration
|
|
test $CMD_DURATION -gt $tide_cmd_duration_threshold && t=(
|
|
math -s0 "$CMD_DURATION/3600000" # Hours
|
|
math -s0 "$CMD_DURATION/60000"%60 # Minutes
|
|
math -s$tide_cmd_duration_decimals "$CMD_DURATION/1000"%60) if test $t[1] != 0
|
|
_tide_print_item cmd_duration $tide_cmd_duration_icon' ' "$t[1]h $t[2]m $t[3]s"
|
|
else if test $t[2] != 0
|
|
_tide_print_item cmd_duration $tide_cmd_duration_icon' ' "$t[2]m $t[3]s"
|
|
else
|
|
_tide_print_item cmd_duration $tide_cmd_duration_icon' ' "$t[3]s"
|
|
end
|
|
end
|