Files
dotfiles/dot_config/nushell/nu_scripts/modules/maintainer_time.nu
Cian Hughes 896af887ca Changed . token to _dot
This change allows the dotfiles to work with chezmoi (e.g: on windows)
and improves grepability with neovim/telescope
2024-11-07 13:52:17 +00:00

19 lines
440 B
Nu

let m_table = (
[
['name', 'tz', 'time'];
['andres' 'America/Guayaquil' ' ']
['fdncred' 'US/Central' ' ']
['gedge' 'US/Eastern' ' ']
['jt' 'NZ' ' ']
['wycats' 'US/Pacific' ' ']
['kubouch' 'Europe/Helsinki' ' ']
['elferherrera' 'Europe/London' ' ']
['storm' 'US/Pacific' ' ']
]
)
let now = (date now)
$m_table | update time {|row|
$now | date to-timezone ($row | get tz) | format date '%c'
}