windows_terminal
Dies ist eine alte Version des Dokuments!
Inhaltsverzeichnis
Windows Terminal
siehe Wikieintrag zu PowerShell
Windows Terminal – The new Windows Terminal and the original Windows console host, all in the same place!
GitHub: https://github.com/microsoft/terminal
Trailer: The new Windows Terminal
Mit bestimmten Schriftarten/Fonts wie z.B. Fira Code (von mir bevorzugt) oder Cascadia Code (von Microsoft für Windows Terminal konzipiert) kann man die Ligaturen aktivieren.
Konfigurationsdatei (version: 1.14)
- Der Acrylic Effekt (Lichtdurchlässigkeit) wird mit
useAcrylickonfiguriert - Die Transparenz/Undurchsichtigkeit wird mit
opacitykonfiguriert (funktioniert erst ab Win 11 eigenständig, vorher wirduseAcrylic: truevorrausgesetzt) - Für WSL Distros die als Appx Pakete installiert wurden (z.B. MS Store) kann der Pfad zum Icon mit diesem PowerShell Kommando ermittelt werden:
$distro = "TheDebianProject.DebianGNULinux"; (Join-Path $(Get-AppxPackage | ? { $_.Name -eq $distro } | Select-Object -ExpandProperty InstallLocation) "Assets" "StoreLogo.scale-200.png").Replace("\", "/")
- settings.json
{ "$help": "https://aka.ms/terminal-documentation", "$schema": "https://aka.ms/terminal-profiles-schema", "actions": [ { "command": "paste", "keys": "ctrl+v" }, { "command": { "action": "copy", "singleLine": false }, "keys": "ctrl+c" }, { "command": "find", "keys": "ctrl+f" }, { "command": { "action": "splitPane", "split": "auto", "splitMode": "duplicate" }, "keys": "alt+d" } ], "alwaysOnTop": false, "alwaysShowNotificationIcon": false, "alwaysShowTabs": true, "copyFormatting": "none", "copyOnSelect": true, "defaultProfile": "{574e775e-4f2a-5b96-ac1e-a2962a402336}", "disabledProfileSources": [ "Windows.Terminal.Azure" ], "firstWindowPreference": "defaultProfile", "focusFollowMouse": true, "initialCols": 128, "initialRows": 32, "profiles": { "defaults": { "adjustIndistinguishableColors": true, "bellStyle": [ "window", "taskbar" ], "closeOnExit": "graceful", "colorScheme": "Campbell", "cursorColor": "#00FF00", "cursorShape": "emptyBox", "font": { "face": "Fira Code", "size": 10 }, "opacity": 80, "scrollbarState": "visible", "selectionBackground": "#8000FF", "snapOnInput": true, "unfocusedAppearance": { "cursorShape": "bar" }, "useAcrylic": false }, "list": [ { "closeOnExit": "always", "guid": "{58ad8b0c-3ef8-5f4d-bc6f-13e4c00f2530}", "hidden": false, "icon": "C:/Program Files/WindowsApps/TheDebianProject.DebianGNULinux_1.12.2.0_x64__76v4gfsz19hv4/Assets/StoreLogo.scale-200.png", "name": "Debian", "source": "Windows.Terminal.Wsl" }, { "guid": "{574e775e-4f2a-5b96-ac1e-a2962a402336}", "hidden": false, "name": "PowerShell", "source": "Windows.Terminal.PowershellCore" }, { "guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", "hidden": false, "name": "Windows PowerShell" }, { "guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}", "hidden": true, "name": "Command Prompt" }, { "guid": "{8a1478df-31eb-5d0a-b79f-96ba1055ddc0}", "hidden": false, "name": "Developer PowerShell for VS 2022", "source": "Windows.Terminal.VisualStudio" }, { "guid": "{92cb5bea-101b-5964-ac7e-52a54e7838a5}", "hidden": true, "name": "Developer Command Prompt for VS 2022", "source": "Windows.Terminal.VisualStudio" } ] }, "schemes": [], "showAdminShield": true, "showTabsInTitlebar": true, "showTerminalTitleInTitlebar": true, "startOnUserLogin": false, "tabSwitcherMode": "inOrder", "tabWidthMode": "equal", "trimBlockSelection": true, "trimPaste": true, "useAcrylicInTabRow": true, "windowingBehavior": "useNew" }
/home/http/wiki/data/attic/windows_terminal.1665516047.txt · Zuletzt geändert: von david
