diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/window.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/window.c b/src/window.c index 2b495b0..13323c9 100644 --- a/src/window.c +++ b/src/window.c @@ -41,10 +41,12 @@ cherry_window_new(void) app->visual, CWBackPixel, &attributes); - char hello[] = "Hello from another World!"; + char window_name[] = ""; + char icon_name[] = ""; XSetStandardProperties(app->display, w->window_handler, - hello, hello, + window_name, + icon_name, None, NULL, 0, &hints); |