1 /* seticons.c - sets icon configuration in WindowMaker
3 * WindowMaker window manager
5 * Copyright (c) 1997, 1998 Alfredo K. Kojima
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
23 #define PROG_VERSION "seticons (Window Maker) 0.1"
32 #include "../src/wconfig.h"
37 defaultsPathForDomain(char *domain
)
42 gspath
= getenv("GNUSTEP_USER_ROOT");
49 home
= getenv("HOME");
51 printf("%s:could not get HOME environment variable!\n", ProgName
);
56 strcat(path
, "/GNUstep/");
58 strcat(path
, DEFAULTS_DIR
);
62 tmp
= malloc(strlen(path
)+2);
72 printf("Usage: %s [OPTIONS] FILE\n", ProgName
);
73 puts("Reads icon configuration from FILE and updates Window Maker.");
75 puts(" --help display this help and exit");
76 puts(" --version output version information and exit");
81 main(int argc
, char **argv
)
83 proplist_t window_name
, icon_key
, window_attrs
, icon_value
;
84 proplist_t all_windows
, iconset
;
93 printf("%s: missing argument\n", ProgName
);
94 printf("Try '%s --help' for more information\n", ProgName
);
97 for (i
= 1; i
< argc
; i
++) {
98 if (strcmp(argv
[i
], "-h")==0
99 || strcmp(argv
[i
], "--help")==0) {
102 } else if (strcmp(argv
[i
], "--version")==0) {
107 printf("%s: invalid argument '%s'\n", ProgName
, argv
[i
]);
108 printf("Try '%s --help' for more information\n", ProgName
);
115 path
= defaultsPathForDomain("WMWindowAttributes");
117 all_windows
= PLGetProplistWithPath(path
);
119 printf("%s:could not load WindowMaker configuration file \"%s\".\n",
124 iconset
= PLGetProplistWithPath(argv
[1]);
126 printf("%s:could not load icon set file \"%s\".\n", ProgName
, argv
[1]);
131 keylist
= PLGetAllDictionaryKeys(iconset
);
132 icon_key
= PLMakeString("Icon");
134 for (i
=0; i
<PLGetNumberOfElements(keylist
); i
++) {
135 window_name
= PLGetArrayElement(keylist
, i
);
136 if (!PLIsString(window_name
))
139 icon_value
= PLGetDictionaryEntry(iconset
, window_name
);
140 if (!icon_value
|| !PLIsDictionary(icon_value
))
143 window_attrs
= PLGetDictionaryEntry(all_windows
, window_name
);
145 if (PLIsDictionary(window_attrs
)) {
146 PLMergeDictionaries(window_attrs
, icon_value
);
149 PLInsertDictionaryEntry(all_windows
, window_name
, icon_value
);
153 PLSave(all_windows
, YES
);