From 942a0372399f352ff8d514c328a9a2a13f0091d4 Mon Sep 17 00:00:00 2001 From: Kajetan Puchalski Date: Tue, 11 Apr 2023 23:41:49 +0100 Subject: [PATCH] Variables: Add entry for swallow_exception_regex --- pages/Configuring/Variables.md | 1 + 1 file changed, 1 insertion(+) diff --git a/pages/Configuring/Variables.md b/pages/Configuring/Variables.md index faf34556..2ed264d1 100644 --- a/pages/Configuring/Variables.md +++ b/pages/Configuring/Variables.md @@ -243,6 +243,7 @@ Described [here](../Keywords#per-device-input-configs). | disable_autoreload | If true, the config will not reload automatically on save, and instead needs to be reloaded with `hyprctl reload`. Might save on battery. | bool | false | | enable_swallow | Enable window swallowing | bool | false | | swallow_regex | The *class* regex to be used for windows that should be swallowed (usually, a terminal). To know more about the list of regex which can be used [use this cheatsheet](https://github.com/ziishaned/learn-regex/blob/master/README.md). | str | \[EMPTY\] | +| swallow_exception_regex | The *title* regex to be used for windows that should *not* be swallowed by the windows specified in swallow_regex (e.g. wev). The regex is matched against the parent (e.g. Kitty) window's title on the assumption that it changes to whatever process it's running. | str | \[EMPTY\] | | focus_on_activate | Whether Hyprland should focus an app that requests to be focused (an `activate` request) | bool | false | | no_direct_scanout | Disables direct scanout. Direct scanout attempts to reduce lag when there is only one fullscreen application on a screen (e.g. game). It is also recommended to set this to true if the fullscreen application shows graphical glitches. | bool | true | | hide_cursor_on_touch | Hides the cursor when the last input was a touch input until a mouse input is done. | bool | true |