diff options
author | Erik Reider <[email protected]> | 2022-12-07 06:10:11 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2022-12-07 00:10:11 -0500 |
commit | 988fb247107c469bb98ce3088ad189fa12db7cdd (patch) | |
tree | 67eafa3aef85ccb450adb3a46ed313c4ae32db6d /include/sway/config.h | |
parent | e82e4de37f5c6fe184da62f228329a37517ccd55 (diff) |
[Feature] Dim inactive windows (#66)
Diffstat (limited to 'include/sway/config.h')
-rw-r--r-- | include/sway/config.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/sway/config.h b/include/sway/config.h index e644003f..4ec035c2 100644 --- a/include/sway/config.h +++ b/include/sway/config.h @@ -468,6 +468,12 @@ enum xwayland_mode { struct sway_config { // SwayFX config options int corner_radius; + float dim_inactive; + // dim_inactive colors + struct { + float unfocused[4]; + float urgent[4]; + } dim_inactive_colors; char *swaynag_command; struct swaynag_instance swaynag_config_errors; |