1 /* wdwrite.c - write key/value to defaults database
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 "wdwrite (Window Maker) 0.2"
27 * WindowMaker defaults DB writer
31 #include "../src/wconfig.h"
47 char *home
= getenv("HOME");
53 user
= getpwuid(getuid());
74 printf("Syntax:\n%s [OPTIONS] <domain> <option> <value>\n", ProgName
);
76 puts(" --help display this help message");
77 puts(" --version output version information and exit");
82 int main(int argc
, char **argv
)
85 proplist_t dom
, key
, value
, dict
;
91 for (i
= 1; i
< argc
; i
++) {
92 if (strcmp("--help", argv
[i
])==0) {
95 } else if (strcmp("--version", argv
[i
])==0) {
102 printf("%s: invalid argument format\n", ProgName
);
103 printf("Try '%s --help' for more information\n", ProgName
);
107 dom
= PLMakeString(argv
[1]);
108 key
= PLMakeString(argv
[2]);
109 value
= PLGetProplistWithDescription(argv
[3]);
111 printf("%s:syntax error in value \"%s\"", ProgName
, argv
[3]);
114 gsdir
= getenv("GNUSTEP_USER_ROOT");
118 strcpy(path
, gethomedir());
119 strcat(path
, "/GNUstep");
122 strcat(path
, DEFAULTS_DIR
);
124 strcat(path
, argv
[1]);
126 dict
= PLGetProplistWithPath(path
);
128 dict
= PLMakeDictionaryFromEntries(key
, value
, NULL
);
129 PLSetFilename(dict
, PLMakeString(path
));
131 PLRemoveDictionaryEntry(dict
, key
);
132 PLInsertDictionaryEntry(dict
, key
, value
);