Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Jaykul/Profile
Because people always wish they could see your profile...
https://github.com/Jaykul/Profile
Last synced: 8 days ago
JSON representation
Because people always wish they could see your profile...
- Host: GitHub
- URL: https://github.com/Jaykul/Profile
- Owner: Jaykul
- License: mit
- Created: 2016-09-13T04:46:28.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2020-12-18T21:38:33.000Z (almost 4 years ago)
- Last Synced: 2024-12-02T17:04:04.444Z (10 days ago)
- Language: PowerShell
- Size: 225 KB
- Stars: 32
- Watchers: 4
- Forks: 11
- Open Issues: 0
-
Metadata Files:
- Readme: ReadMe.md
- License: LICENSE.txt
Awesome Lists containing this project
- jimsghstars - Jaykul/Profile - Because people always wish they could see your profile... (PowerShell)
README
## This is my profile.
You'll see here my profile.ps1 script, along with a module which contains most of the logic.
Of particular interest is the Set-HostColor function which includes configuration for my prompt and PSGit settings...
Feel free to ask for explanation of anything you want to know.
### This module is not published to the PowerShell gallery
If you really want a copy of it, you can use the [Install-Module.ps1](https://github.com/Jaykul/Profile/blob/master/Install-Module.ps1) to install it on your box:
```posh
# Windows defaults to Tls1.1 which won't work with this github URL
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12iex (irm https://github.com/Jaykul/Profile/raw/master/Install-Module.ps1)
```
Or you can just install all the required modules, and run `Set-PowerLinePrompt`:
```posh
Install-Module Environment, Configuration, PSGit, PowerLine, DefaultParameter
```