https://github.com/carpenteri1/winterminalprofiles
https://github.com/carpenteri1/winterminalprofiles
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/carpenteri1/winterminalprofiles
- Owner: Carpenteri1
- Created: 2023-04-02T00:21:02.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-12T07:20:55.000Z (over 1 year ago)
- Last Synced: 2025-02-12T14:58:02.534Z (4 months ago)
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# WinTerminalProfiles
These are my user-specific configuration files that I use to personalize my Windows experience.### Starship
Placed under C:\ Users \ UserName \ .config### Windows-Terminal-Settings
Placed under %LOCALAPPDATA%\Packages\Microsoft.WindowsTerminal_8wekyb3d8bbwe\LocalState### Launch in QuakeMode
* Open Windows Terminal and json settings file,
* Press Ctrl+Shift+P to open the Settings menu.
* In the search bar, type quake to find the Quake mode settings.
* Set keys u want to use to open the terminal
```
{
"command":
{
"action": "quakeMode",
"desktop": "toCurrent",
"monitor": "any",
"name": "quakeMode",
"toggleVisibility": true
},
"keys": "ctrl+win+ä"
},
```
### Startup in QuakeMode
* Type %APPDATA%\Microsoft\Windows\Start Menu\Programs\Startup in the search bar and press Enter.
* Right-click in the folder and choose "New > Shortcut".
* In the "Type the location of the item" field, enter the following command:
* ``` wt ; new-tab -p "Windows PowerShell" -d "%USERPROFILE%" ```
* This will open Windows Terminal in Quake mode, with a new tab open to the Windows PowerShell shell and the working directory set to your user profile directory.
* Click "Next" and give the shortcut a name, such as "Windows Terminal (Quake mode)".
* Click "Finish" to create the shortcut.
* Now, every time boot in to windows, the Windows Terminal will launch automatically in Quake mode with the specified settings.