commit bb924bf9d175554843e6ba4920753b5a5456b7f7
Author: David Phillips <[email protected]>
Date:   Sun Oct 18 13:21:39 2015 +1300

    Added my missing diff file
    
    Today just isn't my day

diff --git a/st.suckless.org/patches/st-git-20151018-argbbg.diff 
b/st.suckless.org/patches/st-git-20151018-argbbg.diff
new file mode 100644
index 0000000..5134bda
--- /dev/null
+++ b/st.suckless.org/patches/st-git-20151018-argbbg.diff
@@ -0,0 +1,161 @@
+diff --git a/config.def.h b/config.def.h
+index 860ce3d..6afb1df 100644
+--- a/config.def.h
++++ b/config.def.h
+@@ -96,6 +96,8 @@ static const char *colorname[] = {
+       "#555555",
+ };
+ 
++/* bg opacity */
++static const int alpha = 0xdd;
+ 
+ /*
+  * Default colors (colorname index)
+@@ -123,6 +125,7 @@ static unsigned int mousefg = 7;
+ static unsigned int mousebg = 0;
+ 
+ /*
++      "black",
+  * Colors used, when the specific fg == defaultfg. So in reverse mode this
+  * will reverse too. Another logic would only make the simple feature too
+  * complex.
+diff --git a/config.mk b/config.mk
+index 81e3e47..ab35200 100644
+--- a/config.mk
++++ b/config.mk
+@@ -14,7 +14,7 @@ X11LIB = /usr/X11R6/lib
+ INCS = -I. -I/usr/include -I${X11INC} \
+        `pkg-config --cflags fontconfig` \
+        `pkg-config --cflags freetype2`
+-LIBS = -L/usr/lib -lc -L${X11LIB} -lm -lrt -lX11 -lutil -lXft \
++LIBS = -L/usr/lib -lc -L${X11LIB} -lm -lrt -lX11 -lutil -lXft -lXrender \
+        `pkg-config --libs fontconfig`  \
+        `pkg-config --libs freetype2`
+ 
+diff --git a/st.c b/st.c
+index b2a4fff..0a1a9b8 100644
+--- a/st.c
++++ b/st.c
+@@ -61,6 +61,7 @@ char *argv0;
+ #define XK_ANY_MOD    UINT_MAX
+ #define XK_NO_MOD     0
+ #define XK_SWITCH_MOD (1<<13)
++#define OPAQUE 0xff
+ 
+ /* macros */
+ #define MIN(a, b)             ((a) < (b) ? (a) : (b))
+@@ -79,6 +80,7 @@ char *argv0;
+ #define TIMEDIFF(t1, t2)      ((t1.tv_sec-t2.tv_sec)*1000 + \
+                               (t1.tv_nsec-t2.tv_nsec)/1E6)
+ #define MODBIT(x, set, bit)   ((set) ? ((x) |= (bit)) : ((x) &= ~(bit)))
++#define USE_ARGB (alpha != OPAQUE && opt_embed == NULL)
+ 
+ #define TRUECOLOR(r,g,b)      (1 << 24 | (r) << 16 | (g) << 8 | (b))
+ #define IS_TRUECOL(x)         (1 << 24 & (x))
+@@ -267,6 +269,7 @@ typedef struct {
+       int w, h; /* window width and height */
+       int ch; /* char height */
+       int cw; /* char width  */
++      int depth; /* bit depth */
+       char state; /* focus, redraw, visible */
+       int cursor; /* cursor style */
+ } XWindow;
+@@ -3134,8 +3137,7 @@ xresize(int col, int row)
+       xw.th = MAX(1, row * xw.ch);
+ 
+       XFreePixmap(xw.dpy, xw.buf);
+-      xw.buf = XCreatePixmap(xw.dpy, xw.win, xw.w, xw.h,
+-                      DefaultDepth(xw.dpy, xw.scr));
++      xw.buf = XCreatePixmap(xw.dpy, xw.win, xw.w, xw.h, xw.depth);
+       XftDrawChange(xw.draw, xw.buf);
+       xclear(0, 0, xw.w, xw.h);
+ }
+@@ -3189,6 +3191,14 @@ xloadcols(void)
+                       else
+                               die("Could not allocate color %d
", i);
+               }
++
++      /* set alpha value of bg color */
++      if (USE_ARGB) {
++              dc.col[defaultbg].color.alpha = (0xffff * alpha) / OPAQUE; 
//0xcccc;
++              dc.col[defaultbg].pixel &= 0x00111111;
++              dc.col[defaultbg].pixel |= alpha << 24; // 0xcc000000;
++      }
++
+       loaded = 1;
+ }
+ 
+@@ -3448,7 +3458,38 @@ xinit(void)
+       if (!(xw.dpy = XOpenDisplay(NULL)))
+               die("Can't open display
");
+       xw.scr = XDefaultScreen(xw.dpy);
+-      xw.vis = XDefaultVisual(xw.dpy, xw.scr);
++      xw.depth = (USE_ARGB) ? 32: XDefaultDepth(xw.dpy, xw.scr);
++      if (! USE_ARGB)
++              xw.vis = XDefaultVisual(xw.dpy, xw.scr);
++      else {
++              XVisualInfo *vis;
++              XRenderPictFormat *fmt;
++              int nvi;
++              int i;
++
++              XVisualInfo tpl = {
++                      .screen = xw.scr,
++                      .depth = 32,
++                      .class = TrueColor
++              };
++
++              vis = XGetVisualInfo(xw.dpy, VisualScreenMask | VisualDepthMask 
| VisualClassMask, &tpl, &nvi);
++              xw.vis = NULL;
++              for(i = 0; i < nvi; i ++) {
++                      fmt = XRenderFindVisualFormat(xw.dpy, vis[i].visual);
++                      if (fmt->type == PictTypeDirect && 
fmt->direct.alphaMask) {
++                              xw.vis = vis[i].visual;
++                              break;
++                      }
++              }
++
++              XFree(vis);
++
++              if (! xw.vis) {
++                      fprintf(stderr, "Couldn't find ARGB visual.
");
++                      exit(1);
++              }
++      }
+ 
+       /* font */
+       if (!FcInit())
+@@ -3458,7 +3499,10 @@ xinit(void)
+       xloadfonts(usedfont, 0);
+ 
+       /* colors */
+-      xw.cmap = XDefaultColormap(xw.dpy, xw.scr);
++      if (! USE_ARGB)
++              xw.cmap = XDefaultColormap(xw.dpy, xw.scr);
++      else
++              xw.cmap = XCreateColormap(xw.dpy, XRootWindow(xw.dpy, xw.scr), 
xw.vis, None);
+       xloadcols();
+ 
+       /* adjust fixed window geometry */
+@@ -3481,16 +3525,17 @@ xinit(void)
+       if (!(opt_embed && (parent = strtol(opt_embed, NULL, 0))))
+               parent = XRootWindow(xw.dpy, xw.scr);
+       xw.win = XCreateWindow(xw.dpy, parent, xw.l, xw.t,
+-                      xw.w, xw.h, 0, XDefaultDepth(xw.dpy, xw.scr), 
InputOutput,
++                      xw.w, xw.h, 0, xw.depth, InputOutput,
+                       xw.vis, CWBackPixel | CWBorderPixel | CWBitGravity
+                       | CWEventMask | CWColormap, &xw.attrs);
+ 
+       memset(&gcvalues, 0, sizeof(gcvalues));
+       gcvalues.graphics_exposures = False;
+-      dc.gc = XCreateGC(xw.dpy, parent, GCGraphicsExposures,
++      xw.buf = XCreatePixmap(xw.dpy, xw.win, xw.w, xw.h, xw.depth);
++      dc.gc = XCreateGC(xw.dpy,
++                      (USE_ARGB)? xw.buf: parent,
++                      GCGraphicsExposures,
+                       &gcvalues);
+-      xw.buf = XCreatePixmap(xw.dpy, xw.win, xw.w, xw.h,
+-                      DefaultDepth(xw.dpy, xw.scr));
+       XSetForeground(xw.dpy, dc.gc, dc.col[defaultbg].pixel);
+       XFillRectangle(xw.dpy, xw.buf, dc.gc, 0, 0, xw.w, xw.h);
+ 


Reply via email to