mirror of
https://github.com/fleschutz/PowerShell.git
synced 2024-11-25 17:33:17 +01:00
Update write-clock.ps1
This commit is contained in:
parent
b45b9c0c3c
commit
243fd6a1be
@ -15,22 +15,24 @@ try {
|
|||||||
[system.threading.thread]::currentthread.currentculture = [system.globalization.cultureinfo]"en-US"
|
[system.threading.thread]::currentthread.currentculture = [system.globalization.cultureinfo]"en-US"
|
||||||
|
|
||||||
Clear-Host
|
Clear-Host
|
||||||
Write-Output ""
|
|
||||||
$Weekday = Get-Date -UFormat "%A"
|
$Weekday = Get-Date -UFormat "%A"
|
||||||
& "$PSScriptRoot/write-big.ps1" " $Weekday"
|
& "$PSScriptRoot/write-big.ps1" " $Weekday"
|
||||||
|
|
||||||
Write-Output ""
|
Write-Output ""
|
||||||
|
|
||||||
$Date = Get-Date -UFormat "%d%b%y"
|
$Date = Get-Date -UFormat "%d%b%y"
|
||||||
& "$PSScriptRoot/write-big.ps1" " $Date"
|
& "$PSScriptRoot/write-big.ps1" " $Date"
|
||||||
Write-Output ""
|
Write-Output ""
|
||||||
|
|
||||||
|
$Week = Get-Date -UFormat "%V"
|
||||||
|
& "$PSScriptRoot/write-big.ps1" " WEEK$Week"
|
||||||
|
Write-Output ""
|
||||||
|
|
||||||
$StartPosition = $HOST.UI.RawUI.CursorPosition
|
$StartPosition = $HOST.UI.RawUI.CursorPosition
|
||||||
while ($true) {
|
while ($true) {
|
||||||
$Time = Get-Date -format "HH:mm:ss"
|
$Time = Get-Date -format "HH:mm:ss"
|
||||||
|
|
||||||
& "$PSScriptRoot/write-big.ps1" " $Time "
|
& "$PSScriptRoot/write-big.ps1" " $Time "
|
||||||
Write-Output ""
|
Write-Output ""
|
||||||
Write-Output ""
|
|
||||||
Write-Output " (press <Ctrl> <C> to stop)"
|
Write-Output " (press <Ctrl> <C> to stop)"
|
||||||
Start-Sleep -seconds 1
|
Start-Sleep -seconds 1
|
||||||
$HOST.UI.RawUI.CursorPosition = $StartPosition
|
$HOST.UI.RawUI.CursorPosition = $StartPosition
|
||||||
|
Loading…
Reference in New Issue
Block a user