1 /* seticons.c - sets icon configuration in WindowMaker
3 * WindowMaker window manager
5 * Copyright (c) 1997-2003 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 along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 #define _GNU_SOURCE /* getopt_long */
33 #ifdef HAVE_STDNORETURN
34 #include <stdnoreturn.h>
37 #include <WINGs/WUtil.h>
39 #include "../src/wconfig.h"
41 static const char *prog_name
;
43 static noreturn
void print_help(int print_usage
, int exitval
)
45 printf("Usage: %s [-h] [-v] file\n", prog_name
);
47 puts("Reads icon configuration from FILE and updates Window Maker.");
49 puts(" -h, --help display this help and exit");
50 puts(" -v, --version output version information and exit");
55 int main(int argc
, char **argv
)
57 WMPropList
*window_name
, *window_attrs
, *icon_value
;
58 WMPropList
*all_windows
, *iconset
, *keylist
;
62 struct option longopts
[] = {
63 { "version", no_argument
, NULL
, 'v' },
64 { "help", no_argument
, NULL
, 'h' },
69 while ((ch
= getopt_long(argc
, argv
, "hv", longopts
, NULL
)) != -1)
72 printf("%s (Window Maker %s)\n", prog_name
, VERSION
);
91 path
= wdefaultspathfordomain("WMWindowAttributes");
93 all_windows
= WMReadPropListFromFile(path
);
95 printf("%s: could not load WindowMaker configuration file \"%s\".\n", prog_name
, path
);
99 iconset
= WMReadPropListFromFile(argv
[0]);
101 printf("%s: could not load icon set file \"%s\".\n", prog_name
, argv
[0]);
105 keylist
= WMGetPLDictionaryKeys(iconset
);
107 for (i
= 0; i
< WMGetPropListItemCount(keylist
); i
++) {
108 window_name
= WMGetFromPLArray(keylist
, i
);
109 if (!WMIsPLString(window_name
))
112 icon_value
= WMGetFromPLDictionary(iconset
, window_name
);
113 if (!icon_value
|| !WMIsPLDictionary(icon_value
))
116 window_attrs
= WMGetFromPLDictionary(all_windows
, window_name
);
118 if (WMIsPLDictionary(window_attrs
)) {
119 WMMergePLDictionaries(window_attrs
, icon_value
, True
);
122 WMPutInPLDictionary(all_windows
, window_name
, icon_value
);
126 WMWritePropListToFile(all_windows
, path
);