User Tools

Site Tools


powershell_setup

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
powershell_setup [2022/12/20 01:59] stephenpowershell_setup [2023/01/28 00:04] (current) – external edit 127.0.0.1
Line 1: Line 1:
 ====== PowerShell Setup ====== ====== PowerShell Setup ======
 +
 +===== Setup PowerShell Gallery =====
  
   - Run ''Get-PSRepository'' to verify if PowerShell Gallery is set up properly. If it isn't, you probably need to [[powershell_cheat_sheet#get_install-module_working_behind_a_webproxy|set up the web proxy settings]].   - Run ''Get-PSRepository'' to verify if PowerShell Gallery is set up properly. If it isn't, you probably need to [[powershell_cheat_sheet#get_install-module_working_behind_a_webproxy|set up the web proxy settings]].
-  - Run ''Find-Module posh-git'' to verify that modules can be installed. If you get 'Unable to resolve package source...' you will need to [[powershell_manual_module_installation|install it manually]] (don't bother trying to fix it).+  - If ''https://www.powershellgallery.com/api/v2'' is untrusted, run this ''Set-PSRepository -Name PSGallery -InstallationPolicy Trusted''
 +  - Run ''Find-Module BurntToast'' to verify that modules can be installed. If you get 'Unable to resolve package source...' you will need to [[powershell_manual_module_installation|install it manually]] (don't bother trying to fix it)
 + 
 +===== Install Stuff ===== 
 + 
 +  - Run ''Install-Module -Name BurntToast -Repository PSGallery''
 +  - Run ''Install-Module -Name Terminal-Icons -Repository PSGallery''.
   - Run ''Install-Module posh-git -Scope CurrentUser''.   - Run ''Install-Module posh-git -Scope CurrentUser''.
 +
 +Older stuff that probably doesn't need to be installed anymore.
 +
   - Run ''winget install JanDeDobbeleer.OhMyPosh -s winget''.   - Run ''winget install JanDeDobbeleer.OhMyPosh -s winget''.
-  Run ''Install-Module -Name Terminal-Icons -Repository PSGallery''. + 
-  - Run ''code $profile''. Update to:<code powershell> +===== Setup Profile ===== 
-Import-Module posh-git + 
-Set-PoshPrompt -Theme pure +  Find your profile: ''$PROFILE | Format-List -Force'' 
-Import-Module -Name Terminal-Icons +  - Test if it exists: ''Test-Path $profile'' 
-Write-Output "Powershell version $($PSVersionTable.PSVersion)"+  Create if it doesn't exist: ''New-Item -path $profile -type file –force'' 
 +  Edit it: ''code $profile'' 
 +  Put just this in it:<code powershell> 
 +'D:\Bin\Manuka\General Scripts\PowerShell startup.ps1'
 </code> </code>
  
Line 25: Line 39:
 ===== Screw it, use my own ===== ===== Screw it, use my own =====
  
-  Create the file below at ''C:\Users\micro\AppData\Local\oh-my-posh\themes\tallguy.omp.json''. +Run this: 
-  Update the profile above with ''Set-PoshPrompt -Theme tallguy''+<code powershell> 
- +oh-my-posh init pwsh --config 'D:\Bin\Common\Settings\Oh-my-posh themes\tallguy.omp.json' | Invoke-Expression
-<code javascript> +
-+
-  "$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json", +
-  "final_space": true, +
-  "console_title": true, +
-  "console_title_style": "template", +
-  "console_title_template": "{{ .Shell }} in {{ .Folder }}", +
-  "blocks":+
-    { +
-      "type": "prompt", +
-      "alignment": "left", +
-      "segments":+
-        { +
-          "type": "path", +
-          "style": "powerline", +
-          "powerline_symbol": "\uE0B0", +
-          "foreground": "#003544", +
-          "background": "#0087D8", +
-          "properties":+
-            "prefix": " \uE5FF ", +
-            "style": "full", +
-            "folder_separator_icon": "\\" +
-          } +
-        }, +
-        { +
-          "type": "git", +
-          "style": "powerline", +
-          "powerline_symbol": "", +
-          "foreground": "#193549", +
-          "background": "#d2ff5e", +
-          "properties":+
-            "display_stash_count": true, +
-            "display_upstream_icon": true, +
-            "status_colors_enabled": true, +
-            "display_status": true, +
-            "local_changes_color": "#ff9248", +
-            "ahead_and_behind_color": "#f26d50", +
-            "behind_color": "#f17c37", +
-            "ahead_color": "#89d1dc", +
-            "stash_count_icon": "\uF692 " +
-          } +
-        }, +
-        { +
-          "type": "exit", +
-          "style": "powerline", +
-          "powerline_symbol": "\uE0B0", +
-          "foreground": "#242424", +
-          "background": "#33DD2D", +
-          "properties":+
-            "display_exit_code": false, +
-            "always_enabled": true, +
-            "color_background": true, +
-            "error_color": "#f1184c", +
-            "prefix": " \ufc8d" +
-          } +
-        } +
-      ] +
-    }, +
-    { +
-      "type": "prompt", +
-      "alignment": "right", +
-      "segments":+
-        { +
-          "type": "battery", +
-          "style": "powerline", +
-          "invert_powerline": true, +
-          "powerline_symbol": "\uE0B2", +
-          "foreground": "#242424", +
-          "background": "#f36943", +
-          "properties":+
-            "battery_icon": "\f583", +
-            "color_background": true, +
-            "charged_color": "#0476d0", +
-            "charging_color": "#33DD2D", +
-            "discharging_color": "#FFCD58", +
-            "postfix": "\uF295 \uf583 " +
-          } +
-        }, +
-        { +
-          "type": "python", +
-          "style": "powerline", +
-          "invert_powerline": true, +
-          "powerline_symbol": "\uE0B2", +
-          "foreground": "#003544", +
-          "background": "#0087D8", +
-          "properties":+
-            "prefix": " \uE235 ", +
-            "display_version": false, +
-            "display_mode": "context", +
-            "display_virtual_env": true +
-          } +
-        }, +
-        { +
-          "type": "spotify", +
-          "style": "powerline", +
-          "powerline_symbol": "\uE0B0", +
-          "foreground": "#434343", +
-          "background": "#1BD760", +
-          "properties":+
-            "prefix": " \uF9C6 " +
-          } +
-        }, +
-        { +
-          "type": "time", +
-          "style": "powerline", +
-          "invert_powerline": true, +
-          "powerline_symbol": "\uE0B2", +
-          "foreground": "#fff", +
-          "background": "#003543", +
-          "properties":+
-            "prefix": "<#fff> \uf64f </>" +
-          } +
-        } +
-      ] +
-    }, +
-    { +
-      "type": "prompt", +
-      "alignment": "left", +
-      "newline": true, +
-      "segments":+
-        { +
-          "type": "root", +
-          "style": "plain", +
-          "foreground": "#FFD700", +
-          "properties":+
-            "root_icon": "⚡" +
-          } +
-        }, +
-        { +
-          "type": "text", +
-          "style": "plain", +
-          "foreground": "#808080", +
-          "properties":+
-            "prefix": "", +
-            "text": ">" +
-          } +
-        } +
-      ] +
-    } +
-  ] +
-}+
 </code> </code>
- 
  
 {{tag>setup powershell}} {{tag>setup powershell}}
powershell_setup.1671501568.txt.gz · Last modified: 2022/12/21 02:59 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki