Created
January 10, 2025 23:37
-
-
Save ZSendokame/89c576146ee9021b23e4be843e70605d to your computer and use it in GitHub Desktop.
My PowerShell Profile
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
| # Defining useful variables and adding scripts into the PATH for later use | |
| $desktop = [Environment]::GetFolderPath("Desktop") | |
| $env:PATH += ";$desktop\scripts" | |
| # SETUP | |
| Clear-Host; wfetch | |
| Set-Location $desktop | |
| # The scripts folder must be created in your desktop for it to work, personally, it has the following scripts: | |
| # wfetch: https://gist.github.com/ZSendokame/91c110ed2b4fc0bfebf57b1a4d5a4795 | |
| # hash: https://gist.github.com/ZSendokame/88d0a720a017a9933cabd2e2537ac17a | |
| # backup: https://gist.github.com/ZSendokame/8b2f58c4b11b9d3d69abacb95cd72bc3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment