Skip to content

Configuration

Luka edited this page Jan 7, 2021 · 5 revisions

Welcome to the Windows-Frameless-Terminal wiki!

Windows Frameless Terminal will be refereed as 'WFT' throughout this page. WFT reads the configuration file within its start directory. Name of the config file is config.json and it is stored at the same directory level as the application executable.


Elements

Command Description Mandatory
string processName Sets the name of the process that will be used. You can obtain this information by clicking into the running exectuable from the task manager and then going right click and then 'Details' ✔️
string moveKey Sets the window move key. Keys are solely represented in strings. 'Up', 'Down', 'LeftCtrl' are just one of the examples. ✔️
int staticWidth Sets the width of the terminal. ✔️
int staticHeight Sets the height of the terminal. ✔️

Customizing the terminal

As of 1.3 beta you can add a rectangular border around your terminal. Start by opening the configuration file and fill in following parameters accordingly.

Command Description
string highlighterColor Sets the border color. NOTE: You can use common color names or use C# color table list as a reference.
integer highlighterBorderWidth Sets the width of the border

Example Configuration file (1.2)

{ "processName": "mintty", "moveKey": "LeftAlt", "staticWidth": 900, "staticHeight": 700}

Example Configuration file OLD

{ "processName": "mintty", "moveKey": "LeftAlt" }

Clone this wiki locally