Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
August 21, 2021 11:11 pm GMT

Windows Terminal Preview Context Menu

If you use multiple Linux WSL, you can enhance your productivity with this tool.

Install

  1. Clone this repogit clone https://github.com/rescenic/wt.context.menu
  2. Configure your settings.json in Windows Terminal Preview folder & config.jsonC:\Users\%USERNAME%\AppData\Local\Packages\Microsoft.WindowsTerminalPreview_8wekyb3d8bbwe\LocalState\settings.jsonwt.2
  3. Copy folder icons to C:\Users\%USERNAME%\AppData\Local\Packages\Microsoft.WindowsTerminalPreview_8wekyb3d8bbwe\LocalState\icons\
  4. Run powershell (no need to get admin access right)
  5. Change the execution policy Set-ExecutionPolicy Unrestricted -scope CurrentUser
  6. Run SetupContextMenu.ps1 scriptwt.3wt.4wt.5

Uninstall

Run SetupContextMenu.ps1 -uninstall:$true

Config

This script will parse the settings.json file to generate menu items. However you can customize it.

Put any icon file into icon folder and modify the config.json like the following.

{    "global": {        "extended": false    },    "profiles": {        "{a5a97cb8-8961-5535-816d-772efe0c6a3f}": {            "icon": "arch.ico",            "label": "Arch Linux"        },        "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}": {            "showRunAs": true        },        "{b453ae62-4e3d-5e58-b989-0a998ec441b8}": {            "hidden": true        }    }}

Config reference

  • global
    • extended[bool]: if set this to true, context menu will only show up when right click with shift
  • profiles
    • guid[string]: this GUID of your profile defined in settings.json
      • hidden[bool]: overwrites the visibility of the profile, if defined
      • icon[string]: filename of your ico file, you must put this file in icon folder
      • label[string]: context menu label
      • showRunAs[bool]: add run as administrator item for this profile

Original Link: https://dev.to/rescenic/windows-terminal-preview-context-menu-1oo5

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To