1 /* wdread.c - read value from defaults database
3 * WindowMaker window manager
5 * Copyright (c) 1997, 1998 Alfredo K. Kojima
6 * (cowardly remade from wdwrite.c; by judas@hell on Jan 26 2001)
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
24 #define PROG_VERSION "wdread (Window Maker) 0.2"
28 * WindowMaker defaults DB reader
32 #include "../src/wconfig.h"
48 char *home
= getenv("HOME");
54 user
= getpwuid(getuid());
75 printf("Syntax:\n%s [OPTIONS] <domain> <option>\n", ProgName
);
77 puts(" --help display this help message");
78 puts(" --version output version information and exit");
83 int main(int argc
, char **argv
)
86 proplist_t key
, value
, dict
;
92 for (i
= 1; i
< argc
; i
++) {
93 if (strcmp("--help", argv
[i
])==0) {
96 } else if (strcmp("--version", argv
[i
])==0) {
103 printf("%s: invalid argument format\n", ProgName
);
104 printf("Try '%s --help' for more information\n", ProgName
);
108 key
= PLMakeString(argv
[2]);
110 gsdir
= getenv("GNUSTEP_USER_ROOT");
114 strcpy(path
, gethomedir());
115 strcat(path
, "/GNUstep");
118 strcat(path
, DEFAULTS_DIR
);
120 strcat(path
, argv
[1]);
122 if ((dict
= PLGetProplistWithPath(path
)) == NULL
)
123 return 1; // bad domain
124 if ((value
= PLGetDictionaryEntry(dict
, key
)) == NULL
)
127 printf("%s\n", PLGetString(value
));