default scratchpad_minimize to false and add warning
This commit is contained in:
parent
212c51f62c
commit
588fca381e
|
@ -46,7 +46,7 @@ Sway is an incredible window manager, and certainly one of the most well establi
|
||||||
- `dim_inactive_colors.urgent <hex color> ex, #900000FF`
|
- `dim_inactive_colors.urgent <hex color> ex, #900000FF`
|
||||||
+ Application saturation: `for_window [CRITERIA HERE] saturation <set|plus|minus> <val 0.0 <-> 2.0>`
|
+ Application saturation: `for_window [CRITERIA HERE] saturation <set|plus|minus> <val 0.0 <-> 2.0>`
|
||||||
+ Keep/remove separator border between titlebar and content: `titlebar_separator enable|disable`
|
+ Keep/remove separator border between titlebar and content: `titlebar_separator enable|disable`
|
||||||
+ Treat Scratchpad as minimized: `scratchpad_minimize enable|disable`
|
+ Treat Scratchpad as minimized: `scratchpad_minimize enable|disable`: **we recommend keeping this setting off, as there are many kinks to iron out here**
|
||||||
|
|
||||||
## Roadmap
|
## Roadmap
|
||||||
|
|
||||||
|
@ -113,4 +113,3 @@ Here's a quick outline of where most of our changes lie vs the main sway reposit
|
||||||
+ `sway/desktop/render.c`: the file that handles calling `fx_renderer` to render to the screen, handles damage tracking and scaling
|
+ `sway/desktop/render.c`: the file that handles calling `fx_renderer` to render to the screen, handles damage tracking and scaling
|
||||||
+ `sway/desktop/fx_renderer.c`: the meat and potatoes of this project, structured as similarly to wlr_renderer as possible
|
+ `sway/desktop/fx_renderer.c`: the meat and potatoes of this project, structured as similarly to wlr_renderer as possible
|
||||||
+ `sway/desktop/shaders`: where all of the shaders that fx_renderer uses live
|
+ `sway/desktop/shaders`: where all of the shaders that fx_renderer uses live
|
||||||
|
|
||||||
|
|
|
@ -41,7 +41,7 @@ dim_inactive_colors.unfocused #000000FF
|
||||||
dim_inactive_colors.urgent #900000FF
|
dim_inactive_colors.urgent #900000FF
|
||||||
|
|
||||||
# Move minimized windows into Scratchpad (enable|disable)
|
# Move minimized windows into Scratchpad (enable|disable)
|
||||||
scratchpad_minimize enable
|
scratchpad_minimize disable
|
||||||
|
|
||||||
### Output configuration
|
### Output configuration
|
||||||
#
|
#
|
||||||
|
|
|
@ -359,7 +359,7 @@ static void config_defaults(struct sway_config *config) {
|
||||||
config->blur_params.radius = 5;
|
config->blur_params.radius = 5;
|
||||||
|
|
||||||
config->titlebar_separator = true;
|
config->titlebar_separator = true;
|
||||||
config->scratchpad_minimize = true;
|
config->scratchpad_minimize = false;
|
||||||
|
|
||||||
if (!(config->layer_criteria = create_list())) goto cleanup;
|
if (!(config->layer_criteria = create_list())) goto cleanup;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue