chiark / gitweb /
-iconic <= -icon; changelog; compile
[chiark-utils.git] / cprogs / xacpi-simple.c
index eb761a290635ca85ab8f80db11b6d26444c26dca..f33380e1943be96819d1323278eb0ea2f89be3fd 100644 (file)
@@ -503,7 +503,7 @@ static const XrmOptionDescRec optiontable[]= {
   { S("-display"),      S("*display"),      XrmoptionSepArg },
   { S("-geometry"),     S("*geometry"),     XrmoptionSepArg },
   { S("-into"),         S("*parentWindow"), XrmoptionSepArg },
-  { S("-icon"),         S("*icon"),         XrmoptionIsArg },
+  { S("-iconic"),       S("*iconic"),       XrmoptionIsArg },
   { S("-withdrawn"),    S("*withdrawn"),    XrmoptionIsArg },
 #define GC(g)
 #define C(c,u)                                                 \
@@ -783,8 +783,8 @@ static void initgraphics(int argc, char **argv) {
 
   wm_hints->flags= InputHint;
   wm_hints->input= False;
-  wm_hints->initial_state= (getresource("withdrawn") ? WithdrawnState :
-                           getresource("icon") ? IconicState
+  wm_hints->initial_state= (getresource_bool("withdrawn",0) ? WithdrawnState :
+                           getresource_bool("iconic",0) ? IconicState
                            : NormalState);
 
   class_hint->res_name= program_name_silly;