1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262
|
/*
* telak - A program that display pictures in root window
* (c) 2005 - Julien Danjou <julien@danjou.info>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2, as
* published by the Free Software Foundation.
*
*/
#define _GNU_SOURCE
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <getopt.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <pwd.h>
#include <unistd.h>
#include <X11/Xatom.h>
#include "telak.h"
#include "parse.h"
#include "image.h"
extern char *optarg;
extern int optind, opterr, optopt;
/* Global stuff */
struct deskitem *head;
struct config conf;
Display *disp;
Window win;
Visual *vis;
Colormap cm;
int
main(int argc, char **argv)
{
/* Init configuration */
conf.display = NULL;
conf.file = NULL;
conf.cache_dir = NULL;
/* Init deskitem list */
head = NULL;
/* Make conf */
make_conf(argc, argv);
init_x();
check_cache_dir();
parse();
draw();
return EXIT_SUCCESS;
}
void
usage()
{
printf("Usage: telak [options]\n");
printf("Options:\n");
printf(" --display | -d <display>\t\tSpecify display\n");
printf(" --config | -c <config>\t\t\tSpecify config file\n");
printf(" --cache <cachedir>\t\t\tSpecify cache directory\n");
printf(" --help | -h\t\t\t\tPrint this help\n");
printf(" --version | -v\t\t\t\tPrint telak version\n");
exit(EXIT_SUCCESS);
}
void
version()
{
printf("telak %s\n", TELAK_VERSION);
exit(EXIT_SUCCESS);
}
static void
find_root_window(Display *display)
{
if (!win)
{
Atom SWM_VROOT = XInternAtom(display, "__SWM_VROOT", False);
Atom NAUTILUS_DESKTOP_WINDOW_ID =
XInternAtom(display, "NAUTILUS_DESKTOP_WINDOW_ID", False);
win = DefaultRootWindow(display);
Window unused, *windows = 0;
unsigned int count;
Atom type;
int format;
unsigned long nitems, bytes_after_return;
unsigned char *virtual_root_window;
if(XGetWindowProperty(display, win, NAUTILUS_DESKTOP_WINDOW_ID,
0, 1, False, XA_WINDOW, &type, &format,
&nitems, &bytes_after_return,
&virtual_root_window) == Success
&& type == XA_WINDOW)
{
if(XQueryTree(display, *(Window *) virtual_root_window, &unused, &unused, &windows, &count))
win = windows[count - 1];
XFree (virtual_root_window);
}
else if(XQueryTree(display, win, &unused, &unused, &windows, &count))
{
unsigned int i;
for (i = 0; i < count; i++)
{
if (XGetWindowProperty (display, windows[i], SWM_VROOT,
0, 1, False, XA_WINDOW, &type, &format,
&nitems, &bytes_after_return,
&virtual_root_window) == Success
&& type == XA_WINDOW)
{
win = *(Window *)virtual_root_window;
XFree (virtual_root_window);
break;
}
}
XFree(windows);
}
else
fprintf(stderr, "Can't query tree on root window 0x%lx", win);
}
}
void
init_x()
{
/* open a connection to the X server */
if(!(disp = XOpenDisplay(conf.display)))
{
fprintf(stderr, "Error while opening display.\n");
exit(EXIT_FAILURE);
}
/* get default visual , colormap etc. you could ask imlib2 for what it */
vis = DefaultVisual(disp, DefaultScreen(disp));
cm = DefaultColormap(disp, DefaultScreen(disp));
find_root_window(disp);
/* We will redraw on exposure */
XSelectInput(disp, win, ExposureMask);
imlib_context_set_display(disp);
imlib_context_set_visual(vis);
imlib_context_set_colormap(cm);
imlib_context_set_drawable(win);
}
void make_conf(int argc, char **argv)
{
int optc;
struct passwd *pass;
struct option opt[] = {
{ "display", 1, 0, 'd' },
{ "config", 1, 0, 'c' },
{ "help", 0, 0, 'h' },
{ "version", 0, 0, 'v' },
{ "cache", 1, 0, 'a' },
{ 0, 0, 0, 0}
};
while((optc = getopt_long(argc, argv, ":d:c:hv", opt, NULL)) != -1)
{
switch(optc)
{
case 'h':
usage();
break;
case 'v':
version();
break;
case 'd':
conf.display = strdup(optarg);
break;
case 'c':
conf.file = strdup(optarg);
break;
case 'a':
conf.cache_dir = strdup(optarg);
break;
case '?':
fprintf(stderr, "Unknown option: -%c\n", optopt);
exit(EXIT_FAILURE);
break;
case ':':
fprintf(stderr, "Missing argument.\n");
exit(EXIT_FAILURE);
break;
}
}
if(conf.cache_dir == NULL)
{
/* Build cache dir path */
pass = getpwuid(getuid());
conf.cache_dir = (char *) malloc(sizeof(char) *
(strlen(pass->pw_dir) + strlen(TELAK_CACHE_DIR) + 3));
strcpy(conf.cache_dir, pass->pw_dir);
strcat(conf.cache_dir, "/");
strcat(conf.cache_dir, TELAK_CACHE_DIR);
strcat(conf.cache_dir, "/");
}
if(!conf.file)
{
/* Build rcfile path */
pass = getpwuid(getuid());
conf.file = (char *) malloc(sizeof(char) *
(strlen(pass->pw_dir) + strlen(TELAK_RCFILE) + 2));
strcpy(conf.file, pass->pw_dir);
strcat(conf.file, "/");
strcat(conf.file, TELAK_RCFILE);
}
}
void
check_cache_dir()
{
struct stat st;
if(stat(conf.cache_dir, &st))
{
if(mkdir(conf.cache_dir, 0700))
{
perror("Unable to create cache directory");
exit(EXIT_FAILURE);
}
}
else if(!S_ISDIR(st.st_mode))
{
fprintf(stderr, "%s is not a directory", conf.cache_dir);
exit(EXIT_FAILURE);
}
}
|