X11

From Noah.org
Revision as of 17:51, 10 December 2009 by Root (talk | contribs) (Created page with ' == Get Background color of shell == This is a hack. I'm still working on this. Should be average color, but seems to be more like median. Pretty fast: <pre> time xwd -silent -…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Get Background color of shell

This is a hack. I'm still working on this.

Should be average color, but seems to be more like median. Pretty fast:

time xwd -silent -nobdrs -id $WINDOWID | convert - -gravity center -crop 1x1+0+0 -depth 8 txt:-

Average, Slower:

time xwd -silent -nobdrs -id $WINDOWID | convert - -colors 1 -crop 1x1+0+0 -depth 8 txt:-