This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ; | |
| ; Inspiration / Code Jacked from the following resources: | |
| ; https://www.reddit.com/r/windowsporn/comments/x6299x/a_small_effect_on_window_switching/ | |
| ; https://superuser.com/questions/1190658/fine-tune-this-red-border-around-active-window-ahk-script/1191059#1191059?newreg=d3acdcdab8714e76a5efeca9996e792f | |
| ; https://www.autohotkey.com/boards/viewtopic.php?f=6&t=110505 | |
| ; https://discord.com/channels/898554690126630914/898556726108901386/1053662963585781760 # Komorebi Discord | |
| ; | |
| #NoEnv | |
| #SingleInstance, Force |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [cmdletbinding()] | |
| [outputtype("moduleInfo")] | |
| Param( | |
| [Parameter(Position = 0, HelpMessage = "Enter a module name or names. Wildcards are allowed.")] | |
| [ValidateNotNullorEmpty()] | |
| [string[]]$Name = "*" | |
| ) | |
| Write-Verbose "Getting installed modules" | |
| Try { |