Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jdhitsolutions/PSClock
:watch: A set of PowerShell commands for creating and managing a transparent WPF-based clock that runs on your Windows desktop.
https://github.com/jdhitsolutions/PSClock
powershell wpf
Last synced: 3 months ago
JSON representation
:watch: A set of PowerShell commands for creating and managing a transparent WPF-based clock that runs on your Windows desktop.
- Host: GitHub
- URL: https://github.com/jdhitsolutions/PSClock
- Owner: jdhitsolutions
- License: mit
- Created: 2021-11-06T13:02:15.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-05-21T12:27:03.000Z (6 months ago)
- Last Synced: 2024-06-10T12:45:08.593Z (5 months ago)
- Topics: powershell, wpf
- Language: PowerShell
- Homepage:
- Size: 853 KB
- Stars: 37
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: Changelog.md
- License: LICENSE.txt
Awesome Lists containing this project
- jimsghstars - jdhitsolutions/PSClock - :watch: A set of PowerShell commands for creating and managing a transparent WPF-based clock that runs on your Windows desktop. (PowerShell)
README
# PSClock
![PSGallery Version](https://img.shields.io/powershellgallery/v/PSClock.png?style=for-the-badge&logo=powershell&label=PowerShell%20Gallery)![PSGallery Downloads](https://img.shields.io/powershellgallery/dt/PSClock.png?style=for-the-badge&label=Downloads)
![logo](images/psclock.png)
This module will create a WPF-based clock launched from a PowerShell prompt that runs on your Windows desktop. The clock runs in a background PowerShell runspace so that it doesn't block. You can customize the clock's appearance including how you want to format the date and time. The clock background is transparent so all you see is formatted text.
If you are running Windows, you can install the module from the PowerShell Gallery. It will work in both Windows PowerShell and PowerShell 7.
```powershell
Install-Module PSClock [-scope CurrentUser]
```Installing the module will also install the `ThreadJob` module if it isn't already installed.
## [Start-PSClock](docs/Start-PSClock.md)
Use `Start-PSClock` or the `psclock` alias to launch a PSClock.
```powershell
Start-PSClock -size 24 -FontFamily 'Bahnschrift Light'
```The font size must be at least 8. You should have tab completion for the `Color`, `FontFamily`, and other font-related parameters.
By default, the clock will be displayed on the center of your screen. You can click and drag the clock to reposition using the left mouse button. You might have to try a few times to "grab" the clock. You can close the clock with a right click or the `Stop-PSClock` command.
The command lets you specify any `DateTime` format string. This is the same value you would use in a command like `Get-Date -format U`. Note that these strings are case-sensitive. See https://docs.microsoft.com/en-us/dotnet/standard/base-types/custom-date-and-time-format-strings for more information.
```powershell
Start-PSClock -size 30 -Color Yellow -format G -FontFamily Verdana
```![format G](images/sample-2.png)
### [Save-PSClock](docs/Save-PSClock.md)
You can use `Save-PSClock` to export current clock settings to an XML file.
```powershell
Save-PSClock
```The file, PSClockSettings.xml, will be stored in `$HOME`. If the file is detected when you run `Start-PSClock`, the saved settings will be imported. If the file exists and you want to specify new settings, use the `-Force` parameter with `Start-PSClock`. This will not remove the saved settings file, only ignore it.
You need to manually delete the file if you no longer wish to use it.
## [Get-PSClock](docs/Get-PSClock.md)
Use this command to get information about the current clock.
```dos
PS C:\> Get-PSClockRunning Format FontFamily Size Weight Color Style OnTop RunspaceID
------- ------ ---------- ---- ------ ----- ----- ----- ----------
True G Verdana 30 Normal Yellow Normal False 28
```If the clock is not running, the `Running` value will be displayed in Red and there will be no `RunspaceID`. There are other properties to this object you might want to use.
```dos
PS C:\> Get-PSClock | Select *Started : 11/6/2021 10:47:33 AM
Format : G
Output : 11/6/2021 10:59:08 AM
Running : True
FontFamily : Verdana
Size : 30
Weight : Normal
Color : Yellow
Style : Normal
OnTop : False
CurrentPosition : {1635, 1089}
RunspaceID : 28
```The `Output` property is a sample using the specified format string.
## [Set-PSClock](docs/Set-PSClock.md)
Use this command to modify the settings of a running PSClock.
```powershell
Set-PSClock -size 30 -color white -FontFamily 'Baskerville Old Face'
```![modify the clock](images/sample-3.png)
You can also increase the size by selecting the clock and using the + key. Decrease using the - key. Each change takes a second to be applied. You might need to "grab" the clock and move it slightly to ensure you have it selected.
If you only want to change the color, you can use PSReadLine to display a formatted list of color options. After the `-Color` parameter, press Ctrl+Space and answer `Y`.
![PSReadLine completion](images/set-psclock-color.png)
Move the cursor to your selected choice and press Enter.
### Settings Preview Form
Version 1.4.0 updates the PSClock and allows you to configure the font family, style, and color via a WPF-based GUI. Select the clock and press `p` to display the form. The form elements have tooltips to help you understand what each setting does. Hover your mouse over the element to see the tooltip.
![show settings preview](images/psclock-preview.png)
You can select a combination of font elements and view the preview. If you want to apply the new settings, click the `Apply` button. Don't forget to run `Save-PSClock` to save the settings if you want to re-use them the next time you start a clock.
You can also run `Show-PSClockSettingPreview`.
If you don't want to apply and changes, close the form.
## [Stop-PSClock](docs/Stop-PSClock.md)
Use this command to stop a running PSClock from the PowerShell prompt.
```powershell
Stop-PSClock
```You can also right-click the clock to dismiss it, or close and remove the runspace it is using. You can still use `Get-PSClock` which should now reflect that a clock is not running.
```dos
PS C:\> Get-PSClockRunning Format FontFamily Size Weight Color Style OnTop RunspaceID
------- ------ ---------- ---- ------ ----- ----- ----- ----------
False G Baskerville Old Face 30 Normal white Normal False
```### Runspaces and Limitations
The clock runs in a separate runspace launched from your PowerShell session. If you close the session, the clock will also be closed.
The command is designed to only have one clock running at a time. If you try to start another clock from another PowerShell session, you will get a warning.
```dos
PS C:\> Start-PSClock
WARNING:
A running clock has been detected from another PowerShell session:[11/6/2021 10:47:33 AM] PSClock started by Jeff under PowerShell process id 13752
If this is incorrect, delete `C:\Users\Jeff\AppData\Local\Temp\psclock-flag.txt` and try again.
```If you close PowerShell without properly shutting down the clock you may be left with the flag file. Manually delete the file and try again.
## Font Preview
This module also includes a font preview utility. Run `Show-FontPreview` to display a WPF form that will let you preview different fonts.
![font preview](images/show-fontpreview.png)
You can use the arrow keys or buttons to navigate through the fonts. Press Ctrl+Q to quit or manually close the form.
## Module Design
For more details about the module design and technical implementation, read the [design document](Design.md).
## Related Modules
For a WPF-based countdown timer, take a look at the [Start-PSCountdownTimer](https://bit.ly/3T5ntz1) command in the [PSTimers](https://github.com/jdhitsolutions/PSTimers) module.
## Known Issues
There are no known issues at this time. Please post any bugs or feature requests in the [Issues](https://github.com/jdhitsolutions/PSClock/issues) section of this repository.