aboutsummaryrefslogtreecommitdiffhomepage
path: root/uzblctrl.c
diff options
context:
space:
mode:
authorGravatar Dieter Plaetinck <dieter@plaetinck.be>2009-05-29 18:41:28 +0200
committerGravatar Dieter Plaetinck <dieter@plaetinck.be>2009-05-29 18:41:28 +0200
commite2f75a1e547e43f26ba6b32adfa59b2534743288 (patch)
tree60d5e50fbe5845645802e7364d049ceaae35986c /uzblctrl.c
parent86d8f9b372c9c558527a2fc7b305f1a681e97d68 (diff)
formatting + clarification
Diffstat (limited to 'uzblctrl.c')
-rw-r--r--uzblctrl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/uzblctrl.c b/uzblctrl.c
index 9aaca0b..7c369aa 100644
--- a/uzblctrl.c
+++ b/uzblctrl.c
@@ -23,7 +23,7 @@ static gchar* command;
static GOptionEntry entries[] =
{
- { "socket", 's', 0, G_OPTION_ARG_STRING, &sockpath, "Path to the uzbl socket", NULL },
+ { "socket", 's', 0, G_OPTION_ARG_STRING, &sockpath, "Path to the uzbl socket", NULL },
{ "command", 'c', 0, G_OPTION_ARG_STRING, &command, "The uzbl command to execute", NULL },
{ NULL, 0, 0, 0, NULL, NULL, NULL }
};
@@ -31,7 +31,7 @@ static GOptionEntry entries[] =
int
main(int argc, char* argv[]) {
GError *error = NULL;
- GOptionContext* context = g_option_context_new ("- utility for controlling uzbl");
+ GOptionContext* context = g_option_context_new ("- utility for controlling and interacting with uzbl through it's socket file"); //TODO: get stuff back from uzbl
g_option_context_add_main_entries (context, entries, NULL);
g_option_context_add_group (context, gtk_get_option_group (TRUE));
g_option_context_parse (context, &argc, &argv, &error);