Initial revision
[wmaker-crm.git] / util / setstyle.c
blob09ed2d94e2f41da18905dd6d2089390a3009571c
1 /* setstyle.c - loads style related options to wmaker
3 * WindowMaker window manager
4 *
5 * Copyright (c) 1997, 1998 Alfredo K. Kojima
6 *
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,
20 * USA.
24 #include <stdlib.h>
25 #include <stdio.h>
26 #include <proplist.h>
28 #include <string.h>
30 #include "../src/wconfig.h"
32 char *ProgName;
34 char*
35 defaultsPathForDomain(char *domain)
37 char path[1024];
38 char *gspath, *tmp;
40 gspath = getenv("GNUSTEP_USER_ROOT");
41 if (gspath) {
42 strcpy(path, gspath);
43 strcat(path, "/");
44 } else {
45 char *home;
47 home = getenv("HOME");
48 if (!home) {
49 printf("%s:could not get HOME environment variable!\n", ProgName);
50 exit(0);
53 strcpy(path, home);
54 strcat(path, "/GNUstep/");
56 strcat(path, DEFAULTS_DIR);
57 strcat(path, "/");
58 strcat(path, domain);
60 tmp = malloc(strlen(path)+2);
61 strcpy(tmp, path);
63 return tmp;
67 int
68 main(int argc, char **argv)
70 proplist_t prop, style;
71 char *path;
73 ProgName = argv[0];
75 if (argc!=2) {
76 printf("Syntax:\n%s <style file>\n", argv[0]);
77 exit(1);
80 path = defaultsPathForDomain("WindowMaker");
82 prop = PLGetProplistWithPath(path);
83 if (!prop) {
84 printf("%s:could not load WindowMaker configuration file \"%s\".\n",
85 ProgName, path);
86 exit(1);
89 style = PLGetProplistWithPath(argv[1]);
90 if (!style) {
91 printf("%s:could not load style file \"%s\".\n", ProgName, argv[1]);
92 exit(1);
95 PLMergeDictionaries(prop, style);
97 PLSave(prop, YES);
99 exit(0);