├── .github └── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── config.yml │ ├── feature-request.yml │ └── other-request.yml ├── Changelog.md ├── Design.md ├── LICENSE.txt ├── PSClock.psd1 ├── PSClock.psm1 ├── README.md ├── docs ├── Get-PSClock.md ├── Get-PrimaryDisplaySize.md ├── Save-PSClock.md ├── Set-PSClock.md ├── Show-FontPreview.md ├── Show-PSClockSettingPreview.md ├── Start-PSClock.md ├── Stop-PSClock.md └── about_psclock.md ├── en-US ├── PSClock-help.xml ├── PSClock.psd1 └── about_psclock.help.txt ├── formats └── psclock.format.ps1xml ├── functions ├── ClockSettingsPreview.ps1 ├── Get-PSClock.ps1 ├── Get-ScreenWidth.ps1 ├── Save-PSClock.ps1 ├── Set-PSClock.ps1 ├── Start-PSClock.ps1 ├── Stop-PSClock.ps1 ├── WPFFontPreview.ps1 ├── fonts.ico └── private.ps1 ├── images ├── custom-verbose.png ├── get-psclock.png ├── psclock-preview.png ├── psclock.png ├── pstoolmaking-thumbnail.png ├── sample-1.png ├── sample-2.png ├── sample-3.png ├── set-psclock-color.png ├── show-fontpreview.png └── tab-complete-example.png └── tests └── PSClock.tests.ps1 /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSClock/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSClock/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSClock/HEAD/.github/ISSUE_TEMPLATE/feature-request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/other-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSClock/HEAD/.github/ISSUE_TEMPLATE/other-request.yml -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSClock/HEAD/Changelog.md -------------------------------------------------------------------------------- /Design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSClock/HEAD/Design.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSClock/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /PSClock.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSClock/HEAD/PSClock.psd1 -------------------------------------------------------------------------------- /PSClock.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSClock/HEAD/PSClock.psm1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSClock/HEAD/README.md -------------------------------------------------------------------------------- /docs/Get-PSClock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSClock/HEAD/docs/Get-PSClock.md -------------------------------------------------------------------------------- /docs/Get-PrimaryDisplaySize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSClock/HEAD/docs/Get-PrimaryDisplaySize.md -------------------------------------------------------------------------------- /docs/Save-PSClock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSClock/HEAD/docs/Save-PSClock.md -------------------------------------------------------------------------------- /docs/Set-PSClock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSClock/HEAD/docs/Set-PSClock.md -------------------------------------------------------------------------------- /docs/Show-FontPreview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSClock/HEAD/docs/Show-FontPreview.md -------------------------------------------------------------------------------- /docs/Show-PSClockSettingPreview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSClock/HEAD/docs/Show-PSClockSettingPreview.md -------------------------------------------------------------------------------- /docs/Start-PSClock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSClock/HEAD/docs/Start-PSClock.md -------------------------------------------------------------------------------- /docs/Stop-PSClock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSClock/HEAD/docs/Stop-PSClock.md -------------------------------------------------------------------------------- /docs/about_psclock.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSClock/HEAD/docs/about_psclock.md -------------------------------------------------------------------------------- /en-US/PSClock-help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSClock/HEAD/en-US/PSClock-help.xml -------------------------------------------------------------------------------- /en-US/PSClock.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSClock/HEAD/en-US/PSClock.psd1 -------------------------------------------------------------------------------- /en-US/about_psclock.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSClock/HEAD/en-US/about_psclock.help.txt -------------------------------------------------------------------------------- /formats/psclock.format.ps1xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSClock/HEAD/formats/psclock.format.ps1xml -------------------------------------------------------------------------------- /functions/ClockSettingsPreview.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSClock/HEAD/functions/ClockSettingsPreview.ps1 -------------------------------------------------------------------------------- /functions/Get-PSClock.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSClock/HEAD/functions/Get-PSClock.ps1 -------------------------------------------------------------------------------- /functions/Get-ScreenWidth.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSClock/HEAD/functions/Get-ScreenWidth.ps1 -------------------------------------------------------------------------------- /functions/Save-PSClock.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSClock/HEAD/functions/Save-PSClock.ps1 -------------------------------------------------------------------------------- /functions/Set-PSClock.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSClock/HEAD/functions/Set-PSClock.ps1 -------------------------------------------------------------------------------- /functions/Start-PSClock.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSClock/HEAD/functions/Start-PSClock.ps1 -------------------------------------------------------------------------------- /functions/Stop-PSClock.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSClock/HEAD/functions/Stop-PSClock.ps1 -------------------------------------------------------------------------------- /functions/WPFFontPreview.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSClock/HEAD/functions/WPFFontPreview.ps1 -------------------------------------------------------------------------------- /functions/fonts.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSClock/HEAD/functions/fonts.ico -------------------------------------------------------------------------------- /functions/private.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSClock/HEAD/functions/private.ps1 -------------------------------------------------------------------------------- /images/custom-verbose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSClock/HEAD/images/custom-verbose.png -------------------------------------------------------------------------------- /images/get-psclock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSClock/HEAD/images/get-psclock.png -------------------------------------------------------------------------------- /images/psclock-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSClock/HEAD/images/psclock-preview.png -------------------------------------------------------------------------------- /images/psclock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSClock/HEAD/images/psclock.png -------------------------------------------------------------------------------- /images/pstoolmaking-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSClock/HEAD/images/pstoolmaking-thumbnail.png -------------------------------------------------------------------------------- /images/sample-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSClock/HEAD/images/sample-1.png -------------------------------------------------------------------------------- /images/sample-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSClock/HEAD/images/sample-2.png -------------------------------------------------------------------------------- /images/sample-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSClock/HEAD/images/sample-3.png -------------------------------------------------------------------------------- /images/set-psclock-color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSClock/HEAD/images/set-psclock-color.png -------------------------------------------------------------------------------- /images/show-fontpreview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSClock/HEAD/images/show-fontpreview.png -------------------------------------------------------------------------------- /images/tab-complete-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSClock/HEAD/images/tab-complete-example.png -------------------------------------------------------------------------------- /tests/PSClock.tests.ps1: -------------------------------------------------------------------------------- 1 | #To be written --------------------------------------------------------------------------------