{"id":10610306,"url":"https://github.com/Grozoff/Windows-Terminal-Tweaker","last_synced_at":"2025-09-12T09:32:21.491Z","repository":{"id":45770576,"uuid":"431019825","full_name":"Grozoff/Windows-Terminal-Tweaker","owner":"Grozoff","description":"Custom tweaks for Windows Terminal","archived":false,"fork":false,"pushed_at":"2023-11-27T11:16:35.000Z","size":20,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-06-02T09:36:52.648Z","etag":null,"topics":["command-line","powershell","starship","starship-config","terminal","tweaks","windows-terminal","windows-terminal-theme","windows-terminal-tweaker"],"latest_commit_sha":null,"homepage":"","language":"PowerShell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Grozoff.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2021-11-23T08:31:00.000Z","updated_at":"2024-04-27T22:04:30.000Z","dependencies_parsed_at":"2023-11-27T12:27:15.236Z","dependency_job_id":null,"html_url":"https://github.com/Grozoff/Windows-Terminal-Tweaker","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Grozoff%2FWindows-Terminal-Tweaker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Grozoff%2FWindows-Terminal-Tweaker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Grozoff%2FWindows-Terminal-Tweaker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Grozoff%2FWindows-Terminal-Tweaker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Grozoff","download_url":"https://codeload.github.com/Grozoff/Windows-Terminal-Tweaker/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":219228671,"owners_count":16457357,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["command-line","powershell","starship","starship-config","terminal","tweaks","windows-terminal","windows-terminal-theme","windows-terminal-tweaker"],"created_at":"2024-06-02T09:32:02.998Z","updated_at":"2024-09-15T00:30:18.936Z","avatar_url":"https://github.com/Grozoff.png","language":"PowerShell","funding_links":[],"categories":["PowerShell"],"sub_categories":[],"readme":"# Let's get started!\n\n1. Get Windows Terminal, get PowerShell (not a windows PowerShell) and set it as default:\n   - Get Windows Terminal free [from the store](https://www.microsoft.com/en-us/p/windows-terminal/9n0dx20hk701?activetab=pivot:overviewtab) or [GitHub releases page](https://github.com/microsoft/terminal/releases)\n   - Get PowerShell free [from the store](https://www.microsoft.com/en-us/p/powershell/9mz1snwt0n5d?activetab=pivot:overviewtab)\n   - Set it as default in terminal -\u003e Settings -\u003e Startup -\u003e Default profile  \n     ![](https://i.imgur.com/H0hskkH.jpeg)\n2. ***(OPTIONAL)*** Change Terminal/Console fonts (includes hundreds of special characters that you can use to make your prompt cooler):\n   - Download Cascaydia Cove Nerd Fonts [from here](https://www.nerdfonts.com/font-downloads)  \n     ![](https://i.imgur.com/g0RQw7G.jpeg)\n   - Unpack and install them in the standard way (right click on the font -\u003e install)\n   - Change font in PowerShell profile to CascaydiaCove NF: Terminal -\u003e Settings -\u003e Profiles -\u003e PowerShell -\u003e Appearance -\u003e Font face  \n     ![](https://i.imgur.com/xIpf83v.jpeg)\n3. Install and use \"Starship\" The minimal, blazing-fast, and infinitely customizable prompt for any shell!:\n   - Install [Starship](https://starship.rs/) with command `winget install --id Starship.Starship` and restart shell (terminal) to reload PATH\n   - Edit `$PROFILE` and add the following line `Invoke-Expression (\u0026starship init powershell)` and for the changes to take effect, restart the shell.\n   - Change default configuration file location with `STARSHIP_CONFIG` environment variable, just add the following line to the `$PROFILE` - `$ENV:STARSHIP_CONFIG = \"$HOME\\example\\non\\default\\path\\starship.toml\"`\n   - Open configuration file `notepad \"$HOME\\example\\non\\default\\path\\starship.toml\"` and insert my configuration `starship.toml` into it.\n4. Installing additional features:\n\n   - Installing color [icons](https://github.com/devblackops/Terminal-Icons) in the directory and files listing!\n     - Run the command `Install-Module -Name Terminal-Icons -Repository PSGallery` And then add one line to my $PROFILE `Import-Module -Name Terminal-Icons`. Now if you run the command `ls` you will see this  \n       ![](https://i.imgur.com/e4sj4Nm.jpeg)\n\n   * [PSReadLine](https://docs.microsoft.com/en-us/powershell/module/psreadline/about/about_psreadline?view=powershell-7.2) provides an improved command-line editing experience in the PowerShell console:\n\n     - Run `Install-Module PSReadLine -AllowPrerelease -Force` and add the following line to $PROFILE `Import-Module PSReadLine`\n     - Enable Predictive IntelliSense\n       ```\n       Set-PSReadLineOption -PredictionSource History\n       Set-PSReadLineOption -PredictionViewStyle ListView\n       Set-PSReadLineOption -EditMode Windows\n       ```\n\n     After saving $PROFILE and restarting the shell, you will have an ANSI-style list with a prediction of what you want to see next and a history of what you have already used.\n     ![](https://i.imgur.com/a6RTvXN.png)\n\n   * For easy navigation through the list that we have set above, it is necessary to add the following lines to the $PROFILE\n\n     ```\n     Set-PSReadLineKeyHandler -Key UpArrow -Function HistorySearchBackward\n     Set-PSReadLineKeyHandler -Key DownArrow -Function HistorySearchForward\n     ```\n\n     Use the up and down arrows to navigate through the sheet\n---\n\n## My final result\n\n- general user  \n   ![](https://i.imgur.com/7i1xczW.png)\n- administrator  \n   ![](https://i.imgur.com/bETIHzb.png)\n- python info  \n   ![](https://i.imgur.com/btyq3hB.png)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FGrozoff%2FWindows-Terminal-Tweaker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FGrozoff%2FWindows-Terminal-Tweaker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FGrozoff%2FWindows-Terminal-Tweaker/lists"}