aboutsummaryrefslogtreecommitdiff
path: root/gsr-ui-daemon/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'gsr-ui-daemon/main.c')
-rw-r--r--gsr-ui-daemon/main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gsr-ui-daemon/main.c b/gsr-ui-daemon/main.c
index 18234c2..d5419d7 100644
--- a/gsr-ui-daemon/main.c
+++ b/gsr-ui-daemon/main.c
@@ -82,7 +82,7 @@ int main(void) {
pid_t overlay_pid = -1;
- fprintf(stderr, "gsr overlay is now ready, waiting for inputs. Press alt+z to show/hide the overlay\n");
+ fprintf(stderr, "gsr ui is now ready, waiting for inputs. Press alt+z to show/hide the ui\n");
XEvent xev;
for(;;) {
@@ -105,9 +105,9 @@ int main(void) {
}
if(overlay_pid == -1) {
- fprintf(stderr, "launch overlay\n");
+ fprintf(stderr, "launch ui\n");
// TODO: window_with_input_focus
- const char *args[] = { "gsr-overlay", NULL };
+ const char *args[] = { "gsr-ui", NULL };
exec_program(args, &overlay_pid);
}
}