mirror of
https://codeberg.org/dnkl/yambar.git
synced 2025-04-20 03:35:41 +02:00
conf: bar/border: verify: all integer options are supposed to be unsigned
This commit is contained in:
parent
72056c50cf
commit
23f12a65b2
1 changed files with 18 additions and 18 deletions
|
@ -392,17 +392,17 @@ static bool
|
||||||
verify_bar_border(keychain_t *chain, const struct yml_node *node)
|
verify_bar_border(keychain_t *chain, const struct yml_node *node)
|
||||||
{
|
{
|
||||||
static const struct attr_info attrs[] = {
|
static const struct attr_info attrs[] = {
|
||||||
{"width", false, &conf_verify_int},
|
{"width", false, &conf_verify_unsigned},
|
||||||
{"left-width", false, &conf_verify_int},
|
{"left-width", false, &conf_verify_unsigned},
|
||||||
{"right-width", false, &conf_verify_int},
|
{"right-width", false, &conf_verify_unsigned},
|
||||||
{"top-width", false, &conf_verify_int},
|
{"top-width", false, &conf_verify_unsigned},
|
||||||
{"bottom-width", false, &conf_verify_int},
|
{"bottom-width", false, &conf_verify_unsigned},
|
||||||
{"color", false, &conf_verify_color},
|
{"color", false, &conf_verify_color},
|
||||||
{"margin", false, &conf_verify_int},
|
{"margin", false, &conf_verify_unsigned},
|
||||||
{"left-margin", false, &conf_verify_int},
|
{"left-margin", false, &conf_verify_unsigned},
|
||||||
{"right-margin", false, &conf_verify_int},
|
{"right-margin", false, &conf_verify_unsigned},
|
||||||
{"top-margin", false, &conf_verify_int},
|
{"top-margin", false, &conf_verify_unsigned},
|
||||||
{"bottom-margin", false, &conf_verify_int},
|
{"bottom-margin", false, &conf_verify_unsigned},
|
||||||
{NULL, false, NULL},
|
{NULL, false, NULL},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -433,20 +433,20 @@ conf_verify_bar(const struct yml_node *bar)
|
||||||
chain_push(&chain, "bar");
|
chain_push(&chain, "bar");
|
||||||
|
|
||||||
static const struct attr_info attrs[] = {
|
static const struct attr_info attrs[] = {
|
||||||
{"height", true, &conf_verify_int},
|
{"height", true, &conf_verify_unsigned},
|
||||||
{"location", true, &verify_bar_location},
|
{"location", true, &verify_bar_location},
|
||||||
{"background", true, &conf_verify_color},
|
{"background", true, &conf_verify_color},
|
||||||
|
|
||||||
{"monitor", false, &conf_verify_string},
|
{"monitor", false, &conf_verify_string},
|
||||||
{"layer", false, &verify_bar_layer},
|
{"layer", false, &verify_bar_layer},
|
||||||
|
|
||||||
{"spacing", false, &conf_verify_int},
|
{"spacing", false, &conf_verify_unsigned},
|
||||||
{"left-spacing", false, &conf_verify_int},
|
{"left-spacing", false, &conf_verify_unsigned},
|
||||||
{"right-spacing", false, &conf_verify_int},
|
{"right-spacing", false, &conf_verify_unsigned},
|
||||||
|
|
||||||
{"margin", false, &conf_verify_int},
|
{"margin", false, &conf_verify_unsigned},
|
||||||
{"left-margin", false, &conf_verify_int},
|
{"left-margin", false, &conf_verify_unsigned},
|
||||||
{"right-margin", false, &conf_verify_int},
|
{"right-margin", false, &conf_verify_unsigned},
|
||||||
|
|
||||||
{"border", false, &verify_bar_border},
|
{"border", false, &verify_bar_border},
|
||||||
{"font", false, &conf_verify_font},
|
{"font", false, &conf_verify_font},
|
||||||
|
@ -456,7 +456,7 @@ conf_verify_bar(const struct yml_node *bar)
|
||||||
{"center", false, &verify_module_list},
|
{"center", false, &verify_module_list},
|
||||||
{"right", false, &verify_module_list},
|
{"right", false, &verify_module_list},
|
||||||
|
|
||||||
{"trackpad-sensitivity", false, &conf_verify_int},
|
{"trackpad-sensitivity", false, &conf_verify_unsigned},
|
||||||
|
|
||||||
{NULL, false, NULL},
|
{NULL, false, NULL},
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue