Skip to content

Instantly share code, notes, and snippets.

@adamchilcott
Created November 2, 2020 08:57
Show Gist options
  • Save adamchilcott/dbdf14e7583904d7f0309749f35535d4 to your computer and use it in GitHub Desktop.
Save adamchilcott/dbdf14e7583904d7f0309749f35535d4 to your computer and use it in GitHub Desktop.
windows-terminal-quake.json
{
// The keys that can be used to toggle the terminal.
// See "HotKeys" bellow for possible values.
"HotKeys": [
{
"Modifiers": "Control",
"Key": "PageUp"
},
{
"Modifiers": "Control",
"Key": "PageDown"
}
],
// Whether to show notifications when the app starts and when the settings are reloaded.
"Notifications": true,
// Make the window see-through (applies to the entire window, including the title bar).
// 0 (invisible) - 100 (opaque)
"Opacity": 80,
// How long the toggle up/down takes in milliseconds.
"ToggleDurationMs": 150,
// How far the terminal should come down, in percentage (eg. 50 = half way, 100 = full screen).
"VerticalScreenCoverage": 100,
// How much horizontal space the terminal should use. When this is below 100, the terminal is centered.
// This can also be above 100, which can be useful to compensate for the window not always taking a 100% of the screen width,
// due to the terminal being bound to column widths (eg. try 100.5 or 101).
"HorizontalScreenCoverage": 101,
// When clicking or alt-tabbing away to another app, the terminal will automatically (and instantly) hide.
"HideOnFocusLost": false
// # HotKeys
// ## Modifiers
// Alt, Control, Shift, Windows
//
// ## Key
// ### Special keys
// Alt, Back, CapsLock, Control, Escape, LControlKey, LShiftKey, LWin, RControlKey, RShiftKey, RWin, Shift, Space, Tab
//
// ### Middle part of the keyboard
// Delete, End, Home, Insert, PageDown, PageUp, PrintScreen
// Down, Left, Right, Up
//
// ### Number keys
// D0 - D9
//
// ### Letters
// A-Z
//
// ### Numpad
// NumPad0 - NumPad9
// Add, Decimal, Divide, Multiply, NumLock, Separator, Subtract
//
// ### Function keys
// F1 - F24
//
// ### Special characters
// OemBackslash, OemCloseBrackets, Oemcomma, OemMinus, OemOpenBrackets,
// OemPeriod, OemPipe, Oemplus, OemQuestion, OemQuotes, OemSemicolon, Oemtilde
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment