all repos — tint2 @ 120207f1f98a5943736941176f09ce975c0b4f11

fork of the tint2 desktop panel for my custom setup - only minimized windows across all desktops for the taskbar

Fix regression in cli handling
o9000 mrovi9000@gmail.com
commit

120207f1f98a5943736941176f09ce975c0b4f11

parent

ceb6a44238c18c89b62c49adb967dc2a007c95b5

2 files changed, 3 insertions(+), 1 deletions(-)

jump to
M src/config.csrc/config.c

@@ -1300,6 +1300,8 @@ }

gboolean config_read_file(const char *path) { + fprintf(stderr, "Loading config file: %s\n", path); + FILE *fp = fopen(path, "r"); if (!fp) return FALSE;
M src/init.csrc/init.c

@@ -133,7 +133,6 @@ }

void create_default_elements() { - default_config(); default_timeout(); default_systray(); memset(&server, 0, sizeof(server));

@@ -212,6 +211,7 @@ void init(int argc, char **argv)

{ setlinebuf(stdout); setlinebuf(stderr); + default_config(); handle_cli_arguments(argc, argv); create_default_elements(); init_signals();