mirror of
https://github.com/swaywm/sway.git
synced 2024-11-25 01:11:28 +00:00
Remove unused verbose flag in bar config
This commit is contained in:
parent
68f0baf3ec
commit
f9c0e9c38d
|
@ -125,7 +125,6 @@ struct bar_config {
|
||||||
char *separator_symbol;
|
char *separator_symbol;
|
||||||
bool strip_workspace_numbers;
|
bool strip_workspace_numbers;
|
||||||
bool binding_mode_indicator;
|
bool binding_mode_indicator;
|
||||||
bool verbose;
|
|
||||||
pid_t pid;
|
pid_t pid;
|
||||||
struct {
|
struct {
|
||||||
char background[10];
|
char background[10];
|
||||||
|
|
|
@ -1035,7 +1035,6 @@ struct bar_config *default_bar_config(void) {
|
||||||
bar->strip_workspace_numbers = false;
|
bar->strip_workspace_numbers = false;
|
||||||
bar->binding_mode_indicator = true;
|
bar->binding_mode_indicator = true;
|
||||||
bar->tray_padding = 2;
|
bar->tray_padding = 2;
|
||||||
bar->verbose = false;
|
|
||||||
bar->pid = 0;
|
bar->pid = 0;
|
||||||
// set default colors
|
// set default colors
|
||||||
strcpy(bar->colors.background, "#000000ff");
|
strcpy(bar->colors.background, "#000000ff");
|
||||||
|
|
|
@ -599,7 +599,6 @@ json_object *ipc_json_describe_bar_config(struct bar_config *bar) {
|
||||||
json_object_object_add(json, "workspace_buttons", json_object_new_boolean(bar->workspace_buttons));
|
json_object_object_add(json, "workspace_buttons", json_object_new_boolean(bar->workspace_buttons));
|
||||||
json_object_object_add(json, "strip_workspace_numbers", json_object_new_boolean(bar->strip_workspace_numbers));
|
json_object_object_add(json, "strip_workspace_numbers", json_object_new_boolean(bar->strip_workspace_numbers));
|
||||||
json_object_object_add(json, "binding_mode_indicator", json_object_new_boolean(bar->binding_mode_indicator));
|
json_object_object_add(json, "binding_mode_indicator", json_object_new_boolean(bar->binding_mode_indicator));
|
||||||
json_object_object_add(json, "verbose", json_object_new_boolean(bar->verbose));
|
|
||||||
json_object_object_add(json, "pango_markup", json_object_new_boolean(bar->pango_markup));
|
json_object_object_add(json, "pango_markup", json_object_new_boolean(bar->pango_markup));
|
||||||
|
|
||||||
json_object *colors = json_object_new_object();
|
json_object *colors = json_object_new_object();
|
||||||
|
|
Loading…
Reference in a new issue