diff --git a/server/commands/screen_commands.c b/server/commands/screen_commands.c index 192273a..7e34472 100644 --- a/server/commands/screen_commands.c +++ b/server/commands/screen_commands.c @@ -132,9 +132,10 @@ screen_del_func (Client * c, int argc, char **argv) * Configures info about a particular screen, such as its * name, priority, or duration * - * usage: screen_set [ -priority ] [ -name ] [ -duration ] - * [ -wid ] [ -hgt ] [ -heartbeat ] [ -cursor ] - * [ -cursor_x ] [ -cursor_y ] + * usage: screen_set [ -name ] [ -wid ] [ -hgt ] + * [ -priority ] [ -duration ] [ -timeout ] + * [ -heartbeat ] [ -backlight ] + * [ -cursor ] [ -cursor_x ] [ -cursor_y ] */ int screen_set_func (Client * c, int argc, char **argv) @@ -149,9 +150,12 @@ screen_set_func (Client * c, int argc, char **argv) return 1; if (argc == 1) { - sock_send_error(c->sock, "Usage: screen_set [ -priority ]" - " [ -name ] [ -duration ] [ -wid ]" - " [ -hgt ] [ -heartbeat ]\n"); + sock_send_error(c->sock, "Usage: screen_set [ -name ]" + " [ -wid ] [ -hgt [ -priority ]" + " [ -duration ] [ -timeout ]" + " [ -heartbeat ] [ -backlight ]" + " [ -cursor ]" + " [ -cursor_x ] [ -cursor_y ]\n"); return 0; } else if (argc == 2) { sock_send_error(c->sock, "What do you want to set?\n");