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 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601
|
#include <X11/Xlib.h>
#include <X11/Xatom.h>
#include <X11/extensions/Xinerama.h>
#include <Imlib2.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
typedef enum { Full, Fill, Center, Tile, Xtend, Cover } ImageMode;
void
usage(char *commandline)
{
printf(
"hsetroot - yet another wallpaper application\n"
"\n"
"Syntax: %s [command1 [arg1..]] [command2 [arg1..]]..."
"\n"
"Generic Options:\n"
" -root Treat multiple displays as one big screen (ignore xrandr outputs)\n"
" -screens <int> Set a screenmask to use\n"
"\n"
"Gradients:\n"
" -add <color> Add color to range using distance 1\n"
" -addd <color> <distance> Add color to range using custom distance\n"
" -gradient <angle> Render gradient using specified angle\n"
" -clear Clear the color range\n"
"\n"
"Solid:\n"
" -solid <color> Render a solid using the specified color\n"
"\n"
"Image files:\n"
" -center <image> Render an image centered on screen\n"
" -cover <image> Render an image centered on screen scaled to fill the screen fully\n"
" -tile <image> Render an image tiled\n"
" -full <image> Render an image maximum aspect\n"
" -extend <image> Render an image max aspect and fill borders\n"
" -fill <image> Render an image stretched\n"
"\n"
"Manipulations:\n"
" -tint <color> Tint the current image\n"
" -blur <radius> Blur the current image\n"
" -sharpen <radius> Sharpen the current image\n"
" -contrast <amount> Adjust contrast of current image\n"
" -brightness <amount> Adjust brightness of current image\n"
" -gamma <amount> Adjust gamma level of current image\n"
" -flipv Flip the current image vertically\n"
" -fliph Flip the current image horizontally\n"
" -flipd Flip the current image diagonally\n"
"\n"
"Misc:\n"
" -alpha <amount> Adjust alpha level for colors and images\n"
" -write <filename> Write current image to file\n"
"\n"
"Colors are in the #rgb, #rrggbb, #rrggbbaa, rgb:1/2/3 formats or a X color name.\n"
"\n"
"Create issues at https://github.com/himdel/hsetroot/issues\n\n"
, commandline);
}
// Globals:
Display *display;
int screen;
// Adapted from fluxbox' bsetroot
int
setRootAtoms(Pixmap pixmap)
{
Atom atom_root, atom_eroot, type;
unsigned char *data_root, *data_eroot;
int format;
unsigned long length, after;
atom_root = XInternAtom(display, "_XROOTPMAP_ID", True);
atom_eroot = XInternAtom(display, "ESETROOT_PMAP_ID", True);
// doing this to clean up after old background
if (atom_root != None && atom_eroot != None) {
XGetWindowProperty(display, RootWindow(display, screen), atom_root, 0L, 1L, False, AnyPropertyType, &type, &format, &length, &after, &data_root);
if (type == XA_PIXMAP) {
XGetWindowProperty(display, RootWindow(display, screen), atom_eroot, 0L, 1L, False, AnyPropertyType, &type, &format, &length, &after, &data_eroot);
if (data_root && data_eroot && type == XA_PIXMAP && *((Pixmap *) data_root) == *((Pixmap *) data_eroot))
XKillClient(display, *((Pixmap *) data_root));
}
}
atom_root = XInternAtom(display, "_XROOTPMAP_ID", False);
atom_eroot = XInternAtom(display, "ESETROOT_PMAP_ID", False);
if (atom_root == None || atom_eroot == None)
return 0;
// setting new background atoms
XChangeProperty(display, RootWindow(display, screen), atom_root, XA_PIXMAP, 32, PropModeReplace, (unsigned char *) &pixmap, 1);
XChangeProperty(display, RootWindow(display, screen), atom_eroot, XA_PIXMAP, 32, PropModeReplace, (unsigned char *) &pixmap, 1);
return 1;
}
typedef struct {
int r, g, b, a;
} Color;
int
parse_color(char *arg, Color *c, int default_alpha)
{
Colormap colormap = DefaultColormap(display, screen);
XColor color;
c->a = default_alpha;
// we support #rrggbbaa..
if ((arg[0] == '#') && (strlen(arg) == 9)) {
sscanf(arg + 7, "%2x", &(c->a));
// ..but XParseColor wouldn't
arg[7] = 0;
}
Status ret = XParseColor(display, colormap, arg, &color);
if (ret == 0)
return 0;
c->r = color.red >> 8;
c->g = color.green >> 8;
c->b = color.blue >> 8;
return 1;
}
int
load_image(ImageMode mode, const char *arg, int alpha, Imlib_Image rootimg, XineramaScreenInfo *outputs, int noutputs)
{
int imgW, imgH, o;
Imlib_Image buffer = imlib_load_image(arg);
if (!buffer)
return 0;
imlib_context_set_image(buffer);
imgW = imlib_image_get_width();
imgH = imlib_image_get_height();
if (alpha < 255) {
// Create alpha-override mask
imlib_image_set_has_alpha(1);
Imlib_Color_Modifier modifier = imlib_create_color_modifier();
imlib_context_set_color_modifier(modifier);
DATA8 red[256], green[256], blue[256], alph[256];
imlib_get_color_modifier_tables(red, green, blue, alph);
for (o = 0; o < 256; o++)
alph[o] = (DATA8) alpha;
imlib_set_color_modifier_tables(red, green, blue, alph);
imlib_apply_color_modifier();
imlib_free_color_modifier();
}
imlib_context_set_image(rootimg);
for (int i = 0; i < noutputs; i++) {
XineramaScreenInfo o = outputs[i];
printf("output %d: size(%d, %d) pos(%d, %d)\n", i, o.width, o.height, o.x_org, o.y_org);
if (mode == Fill) {
imlib_blend_image_onto_image(buffer, 0, 0, 0, imgW, imgH, o.x_org, o.y_org, o.width, o.height);
} else if ((mode == Full) || (mode == Xtend) || (mode == Cover)) {
double aspect = ((double) o.width) / imgW;
if (((int) (imgH * aspect) > o.height) != /*xor*/ (mode == Cover))
aspect = (double) o.height / (double) imgH;
int top = (o.height - (int) (imgH * aspect)) / 2;
int left = (o.width - (int) (imgW * aspect)) / 2;
imlib_blend_image_onto_image(buffer, 0, 0, 0, imgW, imgH, o.x_org + left, o.y_org + top, (int) (imgW * aspect), (int) (imgH * aspect));
if (mode == Xtend) {
int w;
if (left > 0) {
int right = left - 1 + (int) (imgW * aspect);
/* check only the right border - left is int divided so the right border is larger */
for (w = 1; right + w < o.width; w <<= 1) {
imlib_image_copy_rect(o.x_org + left + 1 - w, o.y_org, w, o.height, o.x_org + left + 1 - w - w, o.y_org);
imlib_image_copy_rect(o.x_org + right, o.y_org, w, o.height, o.x_org + right + w, o.y_org);
}
}
if (top > 0) {
int bottom = top - 1 + (int) (imgH * aspect);
for (w = 1; (bottom + w < o.height); w <<= 1) {
imlib_image_copy_rect(o.x_org, o.y_org + top + 1 - w, o.width, w, o.x_org, o.y_org + top + 1 - w - w);
imlib_image_copy_rect(o.x_org, o.y_org + bottom, o.width, w, o.x_org, o.y_org + bottom + w);
}
}
}
} else { // Center || Tile
int left = (o.width - imgW) / 2;
int top = (o.height - imgH) / 2;
if (mode == Tile) {
int x, y;
for (; left > 0; left -= imgW);
for (; top > 0; top -= imgH);
for (x = left; x < o.width; x += imgW)
for (y = top; y < o.height; y += imgH)
imlib_blend_image_onto_image(buffer, 0, 0, 0, imgW, imgH, o.x_org + x, o.y_org + y, imgW, imgH);
} else {
imlib_blend_image_onto_image(buffer, 0, 0, 0, imgW, imgH, o.x_org + left, o.y_org + top, imgW, imgH);
}
}
}
imlib_context_set_image(buffer);
imlib_free_image();
imlib_context_set_image(rootimg);
return 1;
}
int
main(int argc, char **argv)
{
Visual *vis;
Colormap cm;
Imlib_Image image;
int width, height, depth, i, alpha;
Pixmap pixmap;
Imlib_Color_Modifier modifier = NULL;
unsigned long screen_mask = ~0;
int opt_root = false;
/* global */ display = XOpenDisplay(NULL);
if (!display) {
fprintf(stderr, "Cannot open X display!\n");
exit(123);
}
// global options
for (i = 1; i < argc; i++) {
if (strcmp(argv[i], "-screens") == 0) {
int intval;
if ((++i) >= argc) {
fprintf(stderr, "Missing value\n");
continue;
}
if ((sscanf(argv[i], "%i", &intval) == 0) || (intval < 0)) {
fprintf(stderr, "Bad value (%s)\n", argv[i]);
continue;
}
screen_mask = intval;
continue;
}
if (strcmp(argv[i], "-root") == 0) {
opt_root = true;
continue;
}
}
int noutputs = 0;
XineramaScreenInfo *outputs = NULL;
XineramaScreenInfo fake = {
.x_org = 0,
.y_org = 0,
.width = 0,
.height = 0,
};
if (opt_root) {
noutputs = 1;
outputs = &fake;
} else {
outputs = XineramaQueryScreens(display, &noutputs);
}
for (/* global */ screen = 0; screen < ScreenCount(display); screen++) {
if ((screen_mask & (1 << screen)) == 0)
continue;
Imlib_Context *context = imlib_context_new();
imlib_context_push(context);
imlib_context_set_display(display);
vis = DefaultVisual(display, screen);
cm = DefaultColormap(display, screen);
width = DisplayWidth(display, screen);
height = DisplayHeight(display, screen);
depth = DefaultDepth(display, screen);
if (opt_root) {
outputs[0].width = width;
outputs[0].height = height;
}
pixmap = XCreatePixmap(display, RootWindow(display, screen), width, height, depth);
imlib_context_set_visual(vis);
imlib_context_set_colormap(cm);
imlib_context_set_drawable(pixmap);
imlib_context_set_color_range(imlib_create_color_range());
image = imlib_create_image(width, height);
imlib_context_set_image(image);
imlib_context_set_color(0, 0, 0, 255);
imlib_image_fill_rectangle(0, 0, width, height);
imlib_context_set_dither(1);
imlib_context_set_blend(1);
alpha = 255;
for (i = 1; i < argc; i++) {
if (modifier != NULL) {
imlib_apply_color_modifier();
imlib_free_color_modifier();
}
modifier = imlib_create_color_modifier();
imlib_context_set_color_modifier(modifier);
if (strcmp(argv[i], "-alpha") == 0) {
if ((++i) >= argc) {
fprintf (stderr, "Missing alpha\n");
continue;
}
if (sscanf(argv[i], "%i", &alpha) == 0) {
fprintf (stderr, "Bad alpha (%s)\n", argv[i]);
continue;
}
} else if (strcmp(argv[i], "-solid") == 0) {
Color c;
if ((++i) >= argc) {
fprintf(stderr, "Missing color\n");
continue;
}
if (parse_color(argv[i], &c, alpha) == 0) {
fprintf (stderr, "Bad color (%s)\n", argv[i]);
continue;
}
imlib_context_set_color(c.r, c.g, c.b, c.a);
imlib_image_fill_rectangle(0, 0, width, height);
} else if (strcmp(argv[i], "-clear") == 0) {
imlib_free_color_range();
imlib_context_set_color_range(imlib_create_color_range());
} else if (strcmp(argv[i], "-add") == 0) {
Color c;
if ((++i) >= argc) {
fprintf(stderr, "Missing color\n");
continue;
}
if (parse_color(argv[i], &c, alpha) == 0) {
fprintf (stderr, "Bad color (%s)\n", argv[i - 1]);
continue;
}
imlib_context_set_color(c.r, c.g, c.b, c.a);
imlib_add_color_to_color_range(1);
} else if (strcmp(argv[i], "-addd") == 0) {
Color c;
int distance;
if ((++i) >= argc) {
fprintf(stderr, "Missing color\n");
continue;
}
if ((++i) >= argc) {
fprintf(stderr, "Missing distance\n");
continue;
}
if (parse_color(argv[i - 1], &c, alpha) == 0) {
fprintf (stderr, "Bad color (%s)\n", argv[i - 1]);
continue;
}
if (sscanf(argv[i], "%i", &distance) == 0) {
fprintf(stderr, "Bad distance (%s)\n", argv[i]);
continue;
}
imlib_context_set_color(c.r, c.g, c.b, c.a);
imlib_add_color_to_color_range(distance);
} else if (strcmp(argv[i], "-gradient") == 0) {
int angle;
if ((++i) >= argc) {
fprintf(stderr, "Missing angle\n");
continue;
}
if (sscanf(argv[i], "%i", &angle) == 0) {
fprintf (stderr, "Bad angle (%s)\n", argv[i]);
continue;
}
imlib_image_fill_color_range_rectangle(0, 0, width, height, angle);
} else if (strcmp(argv[i], "-fill") == 0) {
if ((++i) >= argc) {
fprintf(stderr, "Missing image\n");
continue;
}
if (load_image(Fill, argv[i], alpha, image, outputs, noutputs) == 0) {
fprintf(stderr, "Bad image (%s)\n", argv[i]);
continue;
}
} else if (strcmp(argv[i], "-full") == 0) {
if ((++i) >= argc) {
fprintf(stderr, "Missing image\n");
continue;
}
if (load_image(Full, argv[i], alpha, image, outputs, noutputs) == 0) {
fprintf(stderr, "Bad image (%s)\n", argv[i]);
continue;
}
} else if (strcmp(argv[i], "-extend") == 0) {
if ((++i) >= argc) {
fprintf(stderr, "Missing image\n");
continue;
}
if (load_image(Xtend, argv[i], alpha, image, outputs, noutputs) == 0) {
fprintf(stderr, "Bad image (%s)\n", argv[i]);
continue;
}
} else if (strcmp(argv[i], "-tile") == 0) {
if ((++i) >= argc) {
fprintf(stderr, "Missing image\n");
continue;
}
if (load_image(Tile, argv[i], alpha, image, outputs, noutputs) == 0) {
fprintf(stderr, "Bad image (%s)\n", argv[i]);
continue;
}
} else if (strcmp(argv[i], "-center") == 0) {
if ((++i) >= argc) {
fprintf(stderr, "Missing image\n");
continue;
}
if (load_image(Center, argv[i], alpha, image, outputs, noutputs) == 0) {
fprintf (stderr, "Bad image (%s)\n", argv[i]);
continue;
}
} else if (strcmp(argv[i], "-cover") == 0) {
if ((++i) >= argc) {
fprintf(stderr, "Missing image\n");
continue;
}
if (load_image(Cover, argv[i], alpha, image, outputs, noutputs) == 0) {
fprintf (stderr, "Bad image (%s)\n", argv[i]);
continue;
}
} else if (strcmp(argv[i], "-tint") == 0) {
Color c;
DATA8 r[256], g[256], b[256], a[256];
int j;
if ((++i) >= argc) {
fprintf(stderr, "Missing color\n");
continue;
}
if (parse_color(argv[i], &c, 255) == 0) {
fprintf(stderr, "Bad color\n");
continue;
}
imlib_get_color_modifier_tables(r, g, b, a);
for (j = 0; j < 256; j++) {
r[j] = (DATA8) (((double) r[j] / 255.0) * (double) c.r);
g[j] = (DATA8) (((double) g[j] / 255.0) * (double) c.g);
b[j] = (DATA8) (((double) b[j] / 255.0) * (double) c.b);
}
imlib_set_color_modifier_tables(r, g, b, a);
} else if (strcmp(argv[i], "-blur") == 0) {
int intval;
if ((++i) >= argc) {
fprintf(stderr, "Missing value\n");
continue;
}
if (sscanf(argv[i], "%i", &intval) == 0) {
fprintf(stderr, "Bad value (%s)\n", argv[i]);
continue;
}
imlib_image_blur(intval);
} else if (strcmp(argv[i], "-sharpen") == 0) {
int intval;
if ((++i) >= argc) {
fprintf(stderr, "Missing value\n");
continue;
}
if (sscanf(argv[i], "%i", &intval) == 0) {
fprintf(stderr, "Bad value (%s)\n", argv[i]);
continue;
}
imlib_image_sharpen(intval);
} else if (strcmp(argv[i], "-contrast") == 0) {
double dblval;
if ((++i) >= argc) {
fprintf(stderr, "Missing value\n");
continue;
}
if (sscanf(argv[i], "%lf", &dblval) == 0) {
fprintf(stderr, "Bad value (%s)\n", argv[i]);
continue;
}
imlib_modify_color_modifier_contrast(dblval);
} else if (strcmp(argv[i], "-brightness") == 0) {
double dblval;
if ((++i) >= argc) {
fprintf(stderr, "Missing value\n");
continue;
}
if (sscanf(argv[i], "%lf", &dblval) == 0) {
fprintf(stderr, "Bad value (%s)\n", argv[i]);
continue;
}
imlib_modify_color_modifier_brightness(dblval);
} else if (strcmp(argv[i], "-gamma") == 0) {
double dblval;
if ((++i) >= argc) {
fprintf(stderr, "Missing value\n");
continue;
}
if (sscanf(argv[i], "%lf", &dblval) == 0) {
fprintf(stderr, "Bad value (%s)\n", argv[i]);
continue;
}
imlib_modify_color_modifier_gamma(dblval);
} else if (strcmp(argv[i], "-flipv") == 0) {
imlib_image_flip_vertical();
} else if (strcmp(argv[i], "-fliph") == 0) {
imlib_image_flip_horizontal();
} else if (strcmp(argv[i], "-flipd") == 0) {
imlib_image_flip_diagonal();
} else if (strcmp(argv[i], "-write") == 0) {
if ((++i) >= argc) {
fprintf(stderr, "Missing filename\n");
continue;
}
imlib_save_image(argv[i]);
} else if (strcmp(argv[i], "-root") == 0) {
/* handled as global, just skipping here, no arg */
} else if (strcmp(argv[i], "-screens") == 0) {
/* handled as global, just skipping here, + arg */
i++;
} else {
usage(argv[0]);
imlib_free_image();
imlib_free_color_range();
if (modifier != NULL) {
imlib_context_set_color_modifier(modifier);
imlib_free_color_modifier();
modifier = NULL;
}
XFreePixmap(display, pixmap);
exit(1);
}
}
if (modifier != NULL) {
imlib_context_set_color_modifier(modifier);
imlib_apply_color_modifier();
imlib_free_color_modifier();
modifier = NULL;
}
imlib_render_image_on_drawable(0, 0);
imlib_free_image();
imlib_free_color_range();
if (setRootAtoms(pixmap) == 0)
fprintf(stderr, "Couldn't create atoms...\n");
XKillClient(display, AllTemporary);
XSetCloseDownMode(display, RetainTemporary);
XSetWindowBackgroundPixmap(display, RootWindow(display, screen), pixmap);
XClearWindow(display, RootWindow(display, screen));
XFlush(display);
XSync(display, False);
imlib_context_pop();
imlib_context_free(context);
}
if (outputs != NULL) {
if (!opt_root) {
XFree(outputs);
}
outputs = NULL;
noutputs = 0;
}
return 0;
}
|