1
Fork 0
mirror of https://github.com/RGBCube/nu_scripts synced 2025-08-01 06:37:46 +00:00

Merge pull request #68 from fdncred/update_maintainers

update maintainers
This commit is contained in:
Darren Schroeder 2021-06-26 17:55:00 -05:00 committed by GitHub
commit 12c1b51e54
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,9 +1,18 @@
let m_table = (
[['name', 'tz', 'time']; ['andres' 'US/Eastern' ' '] ['fdncred' 'US/Central' ' '] ['gedge' 'US/Eastern' ' '] ['jturner' 'NZ' ' '] ['wycats' 'US/Pacific' ' ']]
[
['name', 'tz', 'time'];
['andres' 'US/Eastern' ' ']
['fdncred' 'US/Central' ' ']
['gedge' 'US/Eastern' ' ']
['jturner' 'NZ' ' ']
['wycats' 'US/Pacific' ' ']
['kubouch' 'Europe/Helsinki' ' ']
['elferherrera' 'Europe/London' ' ']
]
)
let now = (date now)
$m_table | update time {
each { |name|
$now | date to-timezone ($name | get tz) | date format '%c'
}
}
}