/* $Id: main.c,v 1.4 2011/08/10 23:28:16 khorben Exp $ */ /* Copyright (c) 2011 Pierre Pronchery */ /* This file is part of DeforaOS Desktop Locker */ /* This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, version 3 of the License. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #include #include #include #include "locker.h" /* usage */ static int _usage(void) { fputs("Usage: locker [-p plugin][-s]\n" " -p Authentication plug-in to load\n" " -s Suspend automatically when locked\n", stderr); return 1; } /* main */ int main(int argc, char * argv[]) { int o; int suspend = 0; char const * plugin = NULL; Locker * locker; gtk_init(&argc, &argv); while((o = getopt(argc, argv, "p:s")) != -1) switch(o) { case 's': suspend = 1; break; case 'p': plugin = optarg; break; default: return _usage(); } if((locker = locker_new(suspend, plugin)) == NULL) return 2; gtk_main(); locker_delete(locker); return 0; }