dwindle: add the ability to specify an aspect ratio for a singular window (#10650)
This commit is contained in:
parent
81468253ea
commit
6bdb1f413e
3 changed files with 44 additions and 6 deletions
|
|
@ -1782,6 +1782,18 @@ inline static const std::vector<SConfigOptionDescription> CONFIG_OPTIONS = {
|
|||
.type = CONFIG_OPTION_BOOL,
|
||||
.data = SConfigOptionDescription::SBoolData{false},
|
||||
},
|
||||
SConfigOptionDescription{
|
||||
.value = "dwindle:single_window_aspect_ratio",
|
||||
.description = "If specified, whenever only a single window is open, it will be coerced into the specified aspect ratio. Ignored if the y-value is zero.",
|
||||
.type = CONFIG_OPTION_VECTOR,
|
||||
.data = SConfigOptionDescription::SVectorData{{0, 0}, {0, 0}, {1000., 1000.}},
|
||||
},
|
||||
SConfigOptionDescription{
|
||||
.value = "dwindle:single_window_aspect_ratio_tolerance",
|
||||
.description = "Minimum distance for single_window_aspect_ratio to take effect, in fractions of the monitor's size.",
|
||||
.type = CONFIG_OPTION_FLOAT,
|
||||
.data = SConfigOptionDescription::SFloatData{0.1f, 0.f, 1.f},
|
||||
},
|
||||
|
||||
/*
|
||||
* master:
|
||||
|
|
|
|||
|
|
@ -595,6 +595,8 @@ CConfigManager::CConfigManager() {
|
|||
registerConfigVar("dwindle:smart_split", Hyprlang::INT{0});
|
||||
registerConfigVar("dwindle:smart_resizing", Hyprlang::INT{1});
|
||||
registerConfigVar("dwindle:precise_mouse_move", Hyprlang::INT{0});
|
||||
registerConfigVar("dwindle:single_window_aspect_ratio", Hyprlang::VEC2{0, 0});
|
||||
registerConfigVar("dwindle:single_window_aspect_ratio_tolerance", {0.1f});
|
||||
|
||||
registerConfigVar("master:special_scale_factor", {1.f});
|
||||
registerConfigVar("master:mfact", {0.55f});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue