aboutsummaryrefslogtreecommitdiff
path: root/.repos
diff options
context:
space:
mode:
Diffstat (limited to '.repos')
-rw-r--r--.repos/dwmold/LICENSE37
-rw-r--r--.repos/dwmold/Makefile51
-rw-r--r--.repos/dwmold/README48
-rw-r--r--.repos/dwmold/config.h153
-rw-r--r--.repos/dwmold/config.mk38
-rw-r--r--.repos/dwmold/drw.c435
-rw-r--r--.repos/dwmold/drw.h57
-rw-r--r--.repos/dwmold/dwm.1176
-rw-r--r--.repos/dwmold/dwm.c2257
-rw-r--r--.repos/dwmold/patches/attachbottom.diff60
-rw-r--r--.repos/dwmold/patches/horizgrid.diff70
-rw-r--r--.repos/dwmold/patches/noborder.diff30
-rw-r--r--.repos/dwmold/patches/rotate.diff102
-rw-r--r--.repos/dwmold/patches/scratchpad.diff90
-rw-r--r--.repos/dwmold/patches/singularborders.diff53
-rw-r--r--.repos/dwmold/patches/swallow.diff388
-rw-r--r--.repos/dwmold/transient.c42
-rw-r--r--.repos/dwmold/util.c35
-rw-r--r--.repos/dwmold/util.h8
-rw-r--r--.repos/surf/.gitignore5
-rw-r--r--.repos/surf/FAQ.md10
-rw-r--r--.repos/surf/LICENSE48
-rw-r--r--.repos/surf/Makefile76
-rw-r--r--.repos/surf/README40
-rw-r--r--.repos/surf/TODO.md10
-rw-r--r--.repos/surf/arg.h48
-rw-r--r--.repos/surf/common.c15
-rw-r--r--.repos/surf/common.h3
-rw-r--r--.repos/surf/config.h216
-rw-r--r--.repos/surf/config.mk31
-rw-r--r--.repos/surf/libsurf-webext.c128
-rwxr-xr-x.repos/surf/surf-open.sh32
-rw-r--r--.repos/surf/surf.1330
-rw-r--r--.repos/surf/surf.c2169
34 files changed, 0 insertions, 7291 deletions
diff --git a/.repos/dwmold/LICENSE b/.repos/dwmold/LICENSE
deleted file mode 100644
index d221f09..0000000
--- a/.repos/dwmold/LICENSE
+++ /dev/null
@@ -1,37 +0,0 @@
-MIT/X Consortium License
-
-© 2006-2019 Anselm R Garbe <anselm@garbe.ca>
-© 2006-2009 Jukka Salmi <jukka at salmi dot ch>
-© 2006-2007 Sander van Dijk <a dot h dot vandijk at gmail dot com>
-© 2007-2011 Peter Hartlich <sgkkr at hartlich dot com>
-© 2007-2009 Szabolcs Nagy <nszabolcs at gmail dot com>
-© 2007-2009 Christof Musik <christof at sendfax dot de>
-© 2007-2009 Premysl Hruby <dfenze at gmail dot com>
-© 2007-2008 Enno Gottox Boland <gottox at s01 dot de>
-© 2008 Martin Hurton <martin dot hurton at gmail dot com>
-© 2008 Neale Pickett <neale dot woozle dot org>
-© 2009 Mate Nagy <mnagy at port70 dot net>
-© 2010-2016 Hiltjo Posthuma <hiltjo@codemadness.org>
-© 2010-2012 Connor Lane Smith <cls@lubutu.com>
-© 2011 Christoph Lohmann <20h@r-36.net>
-© 2015-2016 Quentin Rameau <quinq@fifth.space>
-© 2015-2016 Eric Pruitt <eric.pruitt@gmail.com>
-© 2016-2017 Markus Teich <markus.teich@stusta.mhn.de>
-
-Permission is hereby granted, free of charge, to any person obtaining a
-copy of this software and associated documentation files (the "Software"),
-to deal in the Software without restriction, including without limitation
-the rights to use, copy, modify, merge, publish, distribute, sublicense,
-and/or sell copies of the Software, and to permit persons to whom the
-Software is furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
-THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
-FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
-DEALINGS IN THE SOFTWARE.
diff --git a/.repos/dwmold/Makefile b/.repos/dwmold/Makefile
deleted file mode 100644
index 77bcbc0..0000000
--- a/.repos/dwmold/Makefile
+++ /dev/null
@@ -1,51 +0,0 @@
-# dwm - dynamic window manager
-# See LICENSE file for copyright and license details.
-
-include config.mk
-
-SRC = drw.c dwm.c util.c
-OBJ = ${SRC:.c=.o}
-
-all: options dwm
-
-options:
- @echo dwm build options:
- @echo "CFLAGS = ${CFLAGS}"
- @echo "LDFLAGS = ${LDFLAGS}"
- @echo "CC = ${CC}"
-
-.c.o:
- ${CC} -c ${CFLAGS} $<
-
-${OBJ}: config.h config.mk
-
-config.h:
- cp config.def.h $@
-
-dwm: ${OBJ}
- ${CC} -o $@ ${OBJ} ${LDFLAGS}
-
-clean:
- rm -f dwm ${OBJ} dwm-${VERSION}.tar.gz
-
-dist: clean
- mkdir -p dwm-${VERSION}
- cp -R LICENSE Makefile README config.def.h config.mk\
- dwm.1 drw.h util.h ${SRC} dwm.png transient.c dwm-${VERSION}
- tar -cf dwm-${VERSION}.tar dwm-${VERSION}
- gzip dwm-${VERSION}.tar
- rm -rf dwm-${VERSION}
-
-install: all
- mkdir -p ${DESTDIR}${PREFIX}/bin
- cp -f dwm ${DESTDIR}${PREFIX}/bin
- chmod 755 ${DESTDIR}${PREFIX}/bin/dwm
- mkdir -p ${DESTDIR}${MANPREFIX}/man1
- sed "s/VERSION/${VERSION}/g" < dwm.1 > ${DESTDIR}${MANPREFIX}/man1/dwm.1
- chmod 644 ${DESTDIR}${MANPREFIX}/man1/dwm.1
-
-uninstall:
- rm -f ${DESTDIR}${PREFIX}/bin/dwm\
- ${DESTDIR}${MANPREFIX}/man1/dwm.1
-
-.PHONY: all options clean dist install uninstall
diff --git a/.repos/dwmold/README b/.repos/dwmold/README
deleted file mode 100644
index 95d4fd0..0000000
--- a/.repos/dwmold/README
+++ /dev/null
@@ -1,48 +0,0 @@
-dwm - dynamic window manager
-============================
-dwm is an extremely fast, small, and dynamic window manager for X.
-
-
-Requirements
-------------
-In order to build dwm you need the Xlib header files.
-
-
-Installation
-------------
-Edit config.mk to match your local setup (dwm is installed into
-the /usr/local namespace by default).
-
-Afterwards enter the following command to build and install dwm (if
-necessary as root):
-
- make clean install
-
-
-Running dwm
------------
-Add the following line to your .xinitrc to start dwm using startx:
-
- exec dwm
-
-In order to connect dwm to a specific display, make sure that
-the DISPLAY environment variable is set correctly, e.g.:
-
- DISPLAY=foo.bar:1 exec dwm
-
-(This will start dwm on display :1 of the host foo.bar.)
-
-In order to display status info in the bar, you can do something
-like this in your .xinitrc:
-
- while xsetroot -name "`date` `uptime | sed 's/.*,//'`"
- do
- sleep 1
- done &
- exec dwm
-
-
-Configuration
--------------
-The configuration of dwm is done by creating a custom config.h
-and (re)compiling the source code.
diff --git a/.repos/dwmold/config.h b/.repos/dwmold/config.h
deleted file mode 100644
index a29e174..0000000
--- a/.repos/dwmold/config.h
+++ /dev/null
@@ -1,153 +0,0 @@
-/* See LICENSE file for copyright and license details. */
-
-/* appearance */
-static const unsigned int borderpx = 1; /* border pixel of windows */
-static const unsigned int snap = 16; /* snap pixel */
-static const int showbar = 0; /* 0 means no bar */
-static const int topbar = 1; /* 0 means bottom bar */
-static const char *fonts[] = { "Iosevka Term:pixelsize=14:antialias=true:autohint=true" };
-static const char dmenufont[] = "Iosevka Term:pixelsize=14:antialias=true:autohint=true";
-
-static const char col_base00[] = "#282c34";
-static const char col_base01[] = "#353b45";
-static const char col_base02[] = "#3e4451";
-static const char col_base03[] = "#545862";
-static const char col_base04[] = "#565c64";
-static const char col_base05[] = "#abb2bf";
-static const char col_base06[] = "#b6bdca";
-static const char col_base07[] = "#c8ccd4";
-static const char col_base08[] = "#e06c75";
-static const char col_base09[] = "#d19a66";
-static const char col_base0A[] = "#e5c07b";
-static const char col_base0B[] = "#98c379";
-static const char col_base0C[] = "#56b6c2";
-static const char col_base0D[] = "#61afef";
-static const char col_base0E[] = "#c678dd";
-static const char col_base0F[] = "#be5046";
-
-static const char *colors[][3] = {
- /* fg bg border */
- [SchemeNorm] = { col_base05, col_base00, col_base00 },
- [SchemeSel] = { col_base05, col_base02, col_base02 },
-};
-
-/* scratchpad */
-static const char scratchpadname[] = "spterm";
-static const char *scratchpadcmd[] = { "st", "-t", scratchpadname, "-g", "120x34", NULL };
-
-/* tagging */
-static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" };
-
-static const Rule rules[] = {
- /* xprop(1):
- * WM_CLASS(STRING) = instance, class
- * WM_NAME(STRING) = title
- */
- /* class instance title tags mask isfloating monitor */
- { "qutebrowser", NULL, NULL, 1 << 0, 0, -1 },
- { "Spotify", NULL, NULL, 1 << 8, 0, -1 },
- { "TelegramDesktop", NULL, NULL, 1 << 7, 0, -1 },
- { "Signal", NULL, NULL, 1 << 7, 0, -1 },
- { "discord", NULL, NULL, 1 << 7, 0, -1 },
- { "Thunderbird", NULL, NULL, 1 << 6, 0, -1 },
- { NULL, NULL, "WhatsApp", 1 << 7, 0, -1 },
- { NULL, NULL, "DISPATCH", 1 << 2, 0, -1 },
- { NULL, "spterm", NULL, 1 << 10, 1, -1 },
- { NULL, NULL, "flterm", 1 << 10, 1, -1 },
-};
-
-/* layout(s) */
-static const float mfact = 0.55; /* factor of master area size [0.05..0.95] */
-static const int nmaster = 1; /* number of clients in master area */
-static const int resizehints = 0; /* 1 means respect size hints in tiled resizals */
-
-static const Layout layouts[] = {
- /* symbol arrange function */
- { "[T]", tile }, /* first entry is default */
- { "[F]", NULL }, /* no layout function means floating behavior */
- { "[M]", monocle },
-};
-
-/* key definitions */
-#define MODKEY Mod4Mask
-#define TAGKEYS(KEY,TAG) \
- { MODKEY, KEY, view, {.ui = 1 << TAG} }, \
- { MODKEY|ControlMask, KEY, toggleview, {.ui = 1 << TAG} }, \
- { MODKEY|ShiftMask, KEY, tag, {.ui = 1 << TAG} }, \
- { MODKEY|ControlMask|ShiftMask, KEY, toggletag, {.ui = 1 << TAG} },
-
-/* helper for spawning shell commands in the pre dwm-5.0 fashion */
-#define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } }
-
-/* commands */
-static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */
-static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_base00, "-nf", col_base05, "-sb", col_base02, "-sf", col_base05, NULL };
-static const char *termcmd[] = { "st", NULL };
-static const char *fltermcmd[] = { "st", "-t", "flterm", "-g", "120x34", NULL };
-static const char *browsercmd[] = { "qutebrowser", NULL };
-static const char *musiccmd[] = { "spotify", NULL };
-static const char *lockcmd[] = { "slock", NULL };
-
-static Key keys[] = {
- /* modifier key function argument */
- { MODKEY, XK_p, spawn, {.v = dmenucmd } },
- { MODKEY, XK_Return, spawn, {.v = termcmd } },
- { MODKEY|ShiftMask, XK_Return, spawn, {.v = fltermcmd } },
- { MODKEY|ShiftMask, XK_b, spawn, {.v = browsercmd } },
- { MODKEY|ShiftMask, XK_s, spawn, {.v = musiccmd } },
- { MODKEY|ShiftMask, XK_l, spawn, {.v = lockcmd } },
- { MODKEY|ShiftMask, XK_space, togglescratch, {.v = scratchpadcmd } },
-
- { MODKEY|ShiftMask, XK_Return, zoom, {0} },
- { MODKEY, XK_b, togglebar, {0} },
- { MODKEY, XK_j, focusstack, {.i = +1 } },
- { MODKEY, XK_k, focusstack, {.i = -1 } },
- { MODKEY|ShiftMask, XK_j, rotatestack, {.i = +1 } },
- { MODKEY|ShiftMask, XK_k, rotatestack, {.i = -1 } },
- { MODKEY, XK_i, incnmaster, {.i = +1 } },
- { MODKEY, XK_d, incnmaster, {.i = -1 } },
- { MODKEY, XK_h, setmfact, {.f = -0.05} },
- { MODKEY, XK_l, setmfact, {.f = +0.05} },
- { MODKEY, XK_Return, zoom, {0} },
- { MODKEY, XK_Tab, view, {0} },
- { MODKEY, XK_q, killclient, {0} },
- { MODKEY, XK_t, setlayout, {.v = &layouts[0]} },
- { MODKEY, XK_f, setlayout, {.v = &layouts[1]} },
- { MODKEY, XK_m, setlayout, {.v = &layouts[2]} },
- { MODKEY, XK_space, setlayout, {0} },
- { MODKEY, XK_0, view, {.ui = ~0 } },
- { MODKEY|ShiftMask, XK_0, tag, {.ui = ~0 } },
- { MODKEY, XK_comma, focusmon, {.i = -1 } },
- { MODKEY, XK_period, focusmon, {.i = +1 } },
- { MODKEY|ShiftMask, XK_comma, tagmon, {.i = -1 } },
- { MODKEY|ShiftMask, XK_period, tagmon, {.i = +1 } },
- TAGKEYS( XK_1, 0)
- TAGKEYS( XK_2, 1)
- TAGKEYS( XK_3, 2)
- TAGKEYS( XK_4, 3)
- TAGKEYS( XK_5, 4)
- TAGKEYS( XK_6, 5)
- TAGKEYS( XK_7, 6)
- TAGKEYS( XK_8, 7)
- TAGKEYS( XK_9, 8)
-
- { MODKEY|ShiftMask, XK_q, quit, {0} },
-};
-
-/* button definitions */
-/* click can be ClkTagBar, ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */
-static Button buttons[] = {
- /* click event mask button function argument */
- { ClkLtSymbol, 0, Button1, setlayout, {0} },
- { ClkLtSymbol, 0, Button3, setlayout, {.v = &layouts[2]} },
- { ClkWinTitle, 0, Button2, zoom, {0} },
- { ClkStatusText, 0, Button2, spawn, {.v = termcmd } },
- { ClkClientWin, MODKEY, Button1, movemouse, {0} },
- { ClkClientWin, MODKEY, Button2, togglefloating, {0} },
- { ClkClientWin, MODKEY, Button3, resizemouse, {0} },
- { ClkTagBar, 0, Button1, view, {0} },
- { ClkTagBar, 0, Button3, toggleview, {0} },
- { ClkTagBar, MODKEY, Button1, tag, {0} },
- { ClkTagBar, MODKEY, Button3, toggletag, {0} },
-};
-
diff --git a/.repos/dwmold/config.mk b/.repos/dwmold/config.mk
deleted file mode 100644
index 6d36cb7..0000000
--- a/.repos/dwmold/config.mk
+++ /dev/null
@@ -1,38 +0,0 @@
-# dwm version
-VERSION = 6.2
-
-# Customize below to fit your system
-
-# paths
-PREFIX = /usr/local
-MANPREFIX = ${PREFIX}/share/man
-
-X11INC = /usr/X11R6/include
-X11LIB = /usr/X11R6/lib
-
-# Xinerama, comment if you don't want it
-XINERAMALIBS = -lXinerama
-XINERAMAFLAGS = -DXINERAMA
-
-# freetype
-FREETYPELIBS = -lfontconfig -lXft
-FREETYPEINC = /usr/include/freetype2
-# OpenBSD (uncomment)
-#FREETYPEINC = ${X11INC}/freetype2
-
-# includes and libs
-INCS = -I${X11INC} -I${FREETYPEINC}
-LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS}
-
-# flags
-CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_POSIX_C_SOURCE=2 -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS}
-#CFLAGS = -g -std=c99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS}
-CFLAGS = -std=c99 -pedantic -Wall -Wno-deprecated-declarations -Os ${INCS} ${CPPFLAGS}
-LDFLAGS = ${LIBS}
-
-# Solaris
-#CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
-#LDFLAGS = ${LIBS}
-
-# compiler and linker
-CC = cc
diff --git a/.repos/dwmold/drw.c b/.repos/dwmold/drw.c
deleted file mode 100644
index 8fd1ca4..0000000
--- a/.repos/dwmold/drw.c
+++ /dev/null
@@ -1,435 +0,0 @@
-/* See LICENSE file for copyright and license details. */
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include <X11/Xlib.h>
-#include <X11/Xft/Xft.h>
-
-#include "drw.h"
-#include "util.h"
-
-#define UTF_INVALID 0xFFFD
-#define UTF_SIZ 4
-
-static const unsigned char utfbyte[UTF_SIZ + 1] = {0x80, 0, 0xC0, 0xE0, 0xF0};
-static const unsigned char utfmask[UTF_SIZ + 1] = {0xC0, 0x80, 0xE0, 0xF0, 0xF8};
-static const long utfmin[UTF_SIZ + 1] = { 0, 0, 0x80, 0x800, 0x10000};
-static const long utfmax[UTF_SIZ + 1] = {0x10FFFF, 0x7F, 0x7FF, 0xFFFF, 0x10FFFF};
-
-static long
-utf8decodebyte(const char c, size_t *i)
-{
- for (*i = 0; *i < (UTF_SIZ + 1); ++(*i))
- if (((unsigned char)c & utfmask[*i]) == utfbyte[*i])
- return (unsigned char)c & ~utfmask[*i];
- return 0;
-}
-
-static size_t
-utf8validate(long *u, size_t i)
-{
- if (!BETWEEN(*u, utfmin[i], utfmax[i]) || BETWEEN(*u, 0xD800, 0xDFFF))
- *u = UTF_INVALID;
- for (i = 1; *u > utfmax[i]; ++i)
- ;
- return i;
-}
-
-static size_t
-utf8decode(const char *c, long *u, size_t clen)
-{
- size_t i, j, len, type;
- long udecoded;
-
- *u = UTF_INVALID;
- if (!clen)
- return 0;
- udecoded = utf8decodebyte(c[0], &len);
- if (!BETWEEN(len, 1, UTF_SIZ))
- return 1;
- for (i = 1, j = 1; i < clen && j < len; ++i, ++j) {
- udecoded = (udecoded << 6) | utf8decodebyte(c[i], &type);
- if (type)
- return j;
- }
- if (j < len)
- return 0;
- *u = udecoded;
- utf8validate(u, len);
-
- return len;
-}
-
-Drw *
-drw_create(Display *dpy, int screen, Window root, unsigned int w, unsigned int h)
-{
- Drw *drw = ecalloc(1, sizeof(Drw));
-
- drw->dpy = dpy;
- drw->screen = screen;
- drw->root = root;
- drw->w = w;
- drw->h = h;
- drw->drawable = XCreatePixmap(dpy, root, w, h, DefaultDepth(dpy, screen));
- drw->gc = XCreateGC(dpy, root, 0, NULL);
- XSetLineAttributes(dpy, drw->gc, 1, LineSolid, CapButt, JoinMiter);
-
- return drw;
-}
-
-void
-drw_resize(Drw *drw, unsigned int w, unsigned int h)
-{
- if (!drw)
- return;
-
- drw->w = w;
- drw->h = h;
- if (drw->drawable)
- XFreePixmap(drw->dpy, drw->drawable);
- drw->drawable = XCreatePixmap(drw->dpy, drw->root, w, h, DefaultDepth(drw->dpy, drw->screen));
-}
-
-void
-drw_free(Drw *drw)
-{
- XFreePixmap(drw->dpy, drw->drawable);
- XFreeGC(drw->dpy, drw->gc);
- free(drw);
-}
-
-/* This function is an implementation detail. Library users should use
- * drw_fontset_create instead.
- */
-static Fnt *
-xfont_create(Drw *drw, const char *fontname, FcPattern *fontpattern)
-{
- Fnt *font;
- XftFont *xfont = NULL;
- FcPattern *pattern = NULL;
-
- if (fontname) {
- /* Using the pattern found at font->xfont->pattern does not yield the
- * same substitution results as using the pattern returned by
- * FcNameParse; using the latter results in the desired fallback
- * behaviour whereas the former just results in missing-character
- * rectangles being drawn, at least with some fonts. */
- if (!(xfont = XftFontOpenName(drw->dpy, drw->screen, fontname))) {
- fprintf(stderr, "error, cannot load font from name: '%s'\n", fontname);
- return NULL;
- }
- if (!(pattern = FcNameParse((FcChar8 *) fontname))) {
- fprintf(stderr, "error, cannot parse font name to pattern: '%s'\n", fontname);
- XftFontClose(drw->dpy, xfont);
- return NULL;
- }
- } else if (fontpattern) {
- if (!(xfont = XftFontOpenPattern(drw->dpy, fontpattern))) {
- fprintf(stderr, "error, cannot load font from pattern.\n");
- return NULL;
- }
- } else {
- die("no font specified.");
- }
-
- /* Do not allow using color fonts. This is a workaround for a BadLength
- * error from Xft with color glyphs. Modelled on the Xterm workaround. See
- * https://bugzilla.redhat.com/show_bug.cgi?id=1498269
- * https://lists.suckless.org/dev/1701/30932.html
- * https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=916349
- * and lots more all over the internet.
- */
- FcBool iscol;
- if(FcPatternGetBool(xfont->pattern, FC_COLOR, 0, &iscol) == FcResultMatch && iscol) {
- XftFontClose(drw->dpy, xfont);
- return NULL;
- }
-
- font = ecalloc(1, sizeof(Fnt));
- font->xfont = xfont;
- font->pattern = pattern;
- font->h = xfont->ascent + xfont->descent;
- font->dpy = drw->dpy;
-
- return font;
-}
-
-static void
-xfont_free(Fnt *font)
-{
- if (!font)
- return;
- if (font->pattern)
- FcPatternDestroy(font->pattern);
- XftFontClose(font->dpy, font->xfont);
- free(font);
-}
-
-Fnt*
-drw_fontset_create(Drw* drw, const char *fonts[], size_t fontcount)
-{
- Fnt *cur, *ret = NULL;
- size_t i;
-
- if (!drw || !fonts)
- return NULL;
-
- for (i = 1; i <= fontcount; i++) {
- if ((cur = xfont_create(drw, fonts[fontcount - i], NULL))) {
- cur->next = ret;
- ret = cur;
- }
- }
- return (drw->fonts = ret);
-}
-
-void
-drw_fontset_free(Fnt *font)
-{
- if (font) {
- drw_fontset_free(font->next);
- xfont_free(font);
- }
-}
-
-void
-drw_clr_create(Drw *drw, Clr *dest, const char *clrname)
-{
- if (!drw || !dest || !clrname)
- return;
-
- if (!XftColorAllocName(drw->dpy, DefaultVisual(drw->dpy, drw->screen),
- DefaultColormap(drw->dpy, drw->screen),
- clrname, dest))
- die("error, cannot allocate color '%s'", clrname);
-}
-
-/* Wrapper to create color schemes. The caller has to call free(3) on the
- * returned color scheme when done using it. */
-Clr *
-drw_scm_create(Drw *drw, const char *clrnames[], size_t clrcount)
-{
- size_t i;
- Clr *ret;
-
- /* need at least two colors for a scheme */
- if (!drw || !clrnames || clrcount < 2 || !(ret = ecalloc(clrcount, sizeof(XftColor))))
- return NULL;
-
- for (i = 0; i < clrcount; i++)
- drw_clr_create(drw, &ret[i], clrnames[i]);
- return ret;
-}
-
-void
-drw_setfontset(Drw *drw, Fnt *set)
-{
- if (drw)
- drw->fonts = set;
-}
-
-void
-drw_setscheme(Drw *drw, Clr *scm)
-{
- if (drw)
- drw->scheme = scm;
-}
-
-void
-drw_rect(Drw *drw, int x, int y, unsigned int w, unsigned int h, int filled, int invert)
-{
- if (!drw || !drw->scheme)
- return;
- XSetForeground(drw->dpy, drw->gc, invert ? drw->scheme[ColBg].pixel : drw->scheme[ColFg].pixel);
- if (filled)
- XFillRectangle(drw->dpy, drw->drawable, drw->gc, x, y, w, h);
- else
- XDrawRectangle(drw->dpy, drw->drawable, drw->gc, x, y, w - 1, h - 1);
-}
-
-int
-drw_text(Drw *drw, int x, int y, unsigned int w, unsigned int h, unsigned int lpad, const char *text, int invert)
-{
- char buf[1024];
- int ty;
- unsigned int ew;
- XftDraw *d = NULL;
- Fnt *usedfont, *curfont, *nextfont;
- size_t i, len;
- int utf8strlen, utf8charlen, render = x || y || w || h;
- long utf8codepoint = 0;
- const char *utf8str;
- FcCharSet *fccharset;
- FcPattern *fcpattern;
- FcPattern *match;
- XftResult result;
- int charexists = 0;
-
- if (!drw || (render && !drw->scheme) || !text || !drw->fonts)
- return 0;
-
- if (!render) {
- w = ~w;
- } else {
- XSetForeground(drw->dpy, drw->gc, drw->scheme[invert ? ColFg : ColBg].pixel);
- XFillRectangle(drw->dpy, drw->drawable, drw->gc, x, y, w, h);
- d = XftDrawCreate(drw->dpy, drw->drawable,
- DefaultVisual(drw->dpy, drw->screen),
- DefaultColormap(drw->dpy, drw->screen));
- x += lpad;
- w -= lpad;
- }
-
- usedfont = drw->fonts;
- while (1) {
- utf8strlen = 0;
- utf8str = text;
- nextfont = NULL;
- while (*text) {
- utf8charlen = utf8decode(text, &utf8codepoint, UTF_SIZ);
- for (curfont = drw->fonts; curfont; curfont = curfont->next) {
- charexists = charexists || XftCharExists(drw->dpy, curfont->xfont, utf8codepoint);
- if (charexists) {
- if (curfont == usedfont) {
- utf8strlen += utf8charlen;
- text += utf8charlen;
- } else {
- nextfont = curfont;
- }
- break;
- }
- }
-
- if (!charexists || nextfont)
- break;
- else
- charexists = 0;
- }
-
- if (utf8strlen) {
- drw_font_getexts(usedfont, utf8str, utf8strlen, &ew, NULL);
- /* shorten text if necessary */
- for (len = MIN(utf8strlen, sizeof(buf) - 1); len && ew > w; len--)
- drw_font_getexts(usedfont, utf8str, len, &ew, NULL);
-
- if (len) {
- memcpy(buf, utf8str, len);
- buf[len] = '\0';
- if (len < utf8strlen)
- for (i = len; i && i > len - 3; buf[--i] = '.')
- ; /* NOP */
-
- if (render) {
- ty = y + (h - usedfont->h) / 2 + usedfont->xfont->ascent;
- XftDrawStringUtf8(d, &drw->scheme[invert ? ColBg : ColFg],
- usedfont->xfont, x, ty, (XftChar8 *)buf, len);
- }
- x += ew;
- w -= ew;
- }
- }
-
- if (!*text) {
- break;
- } else if (nextfont) {
- charexists = 0;
- usedfont = nextfont;
- } else {
- /* Regardless of whether or not a fallback font is found, the
- * character must be drawn. */
- charexists = 1;
-
- fccharset = FcCharSetCreate();
- FcCharSetAddChar(fccharset, utf8codepoint);
-
- if (!drw->fonts->pattern) {
- /* Refer to the comment in xfont_create for more information. */
- die("the first font in the cache must be loaded from a font string.");
- }
-
- fcpattern = FcPatternDuplicate(drw->fonts->pattern);
- FcPatternAddCharSet(fcpattern, FC_CHARSET, fccharset);
- FcPatternAddBool(fcpattern, FC_SCALABLE, FcTrue);
- FcPatternAddBool(fcpattern, FC_COLOR, FcFalse);
-
- FcConfigSubstitute(NULL, fcpattern, FcMatchPattern);
- FcDefaultSubstitute(fcpattern);
- match = XftFontMatch(drw->dpy, drw->screen, fcpattern, &result);
-
- FcCharSetDestroy(fccharset);
- FcPatternDestroy(fcpattern);
-
- if (match) {
- usedfont = xfont_create(drw, NULL, match);
- if (usedfont && XftCharExists(drw->dpy, usedfont->xfont, utf8codepoint)) {
- for (curfont = drw->fonts; curfont->next; curfont = curfont->next)
- ; /* NOP */
- curfont->next = usedfont;
- } else {
- xfont_free(usedfont);
- usedfont = drw->fonts;
- }
- }
- }
- }
- if (d)
- XftDrawDestroy(d);
-
- return x + (render ? w : 0);
-}
-
-void
-drw_map(Drw *drw, Window win, int x, int y, unsigned int w, unsigned int h)
-{
- if (!drw)
- return;
-
- XCopyArea(drw->dpy, drw->drawable, win, drw->gc, x, y, w, h, x, y);
- XSync(drw->dpy, False);
-}
-
-unsigned int
-drw_fontset_getwidth(Drw *drw, const char *text)
-{
- if (!drw || !drw->fonts || !text)
- return 0;
- return drw_text(drw, 0, 0, 0, 0, 0, text, 0);
-}
-
-void
-drw_font_getexts(Fnt *font, const char *text, unsigned int len, unsigned int *w, unsigned int *h)
-{
- XGlyphInfo ext;
-
- if (!font || !text)
- return;
-
- XftTextExtentsUtf8(font->dpy, font->xfont, (XftChar8 *)text, len, &ext);
- if (w)
- *w = ext.xOff;
- if (h)
- *h = font->h;
-}
-
-Cur *
-drw_cur_create(Drw *drw, int shape)
-{
- Cur *cur;
-
- if (!drw || !(cur = ecalloc(1, sizeof(Cur))))
- return NULL;
-
- cur->cursor = XCreateFontCursor(drw->dpy, shape);
-
- return cur;
-}
-
-void
-drw_cur_free(Drw *drw, Cur *cursor)
-{
- if (!cursor)
- return;
-
- XFreeCursor(drw->dpy, cursor->cursor);
- free(cursor);
-}
diff --git a/.repos/dwmold/drw.h b/.repos/dwmold/drw.h
deleted file mode 100644
index 4bcd5ad..0000000
--- a/.repos/dwmold/drw.h
+++ /dev/null
@@ -1,57 +0,0 @@
-/* See LICENSE file for copyright and license details. */
-
-typedef struct {
- Cursor cursor;
-} Cur;
-
-typedef struct Fnt {
- Display *dpy;
- unsigned int h;
- XftFont *xfont;
- FcPattern *pattern;
- struct Fnt *next;
-} Fnt;
-
-enum { ColFg, ColBg, ColBorder }; /* Clr scheme index */
-typedef XftColor Clr;
-
-typedef struct {
- unsigned int w, h;
- Display *dpy;
- int screen;
- Window root;
- Drawable drawable;
- GC gc;
- Clr *scheme;
- Fnt *fonts;
-} Drw;
-
-/* Drawable abstraction */
-Drw *drw_create(Display *dpy, int screen, Window win, unsigned int w, unsigned int h);
-void drw_resize(Drw *drw, unsigned int w, unsigned int h);
-void drw_free(Drw *drw);
-
-/* Fnt abstraction */
-Fnt *drw_fontset_create(Drw* drw, const char *fonts[], size_t fontcount);
-void drw_fontset_free(Fnt* set);
-unsigned int drw_fontset_getwidth(Drw *drw, const char *text);
-void drw_font_getexts(Fnt *font, const char *text, unsigned int len, unsigned int *w, unsigned int *h);
-
-/* Colorscheme abstraction */
-void drw_clr_create(Drw *drw, Clr *dest, const char *clrname);
-Clr *drw_scm_create(Drw *drw, const char *clrnames[], size_t clrcount);
-
-/* Cursor abstraction */
-Cur *drw_cur_create(Drw *drw, int shape);
-void drw_cur_free(Drw *drw, Cur *cursor);
-
-/* Drawing context manipulation */
-void drw_setfontset(Drw *drw, Fnt *set);
-void drw_setscheme(Drw *drw, Clr *scm);
-
-/* Drawing functions */
-void drw_rect(Drw *drw, int x, int y, unsigned int w, unsigned int h, int filled, int invert);
-int drw_text(Drw *drw, int x, int y, unsigned int w, unsigned int h, unsigned int lpad, const char *text, int invert);
-
-/* Map functions */
-void drw_map(Drw *drw, Window win, int x, int y, unsigned int w, unsigned int h);
diff --git a/.repos/dwmold/dwm.1 b/.repos/dwmold/dwm.1
deleted file mode 100644
index 13b3729..0000000
--- a/.repos/dwmold/dwm.1
+++ /dev/null
@@ -1,176 +0,0 @@
-.TH DWM 1 dwm\-VERSION
-.SH NAME
-dwm \- dynamic window manager
-.SH SYNOPSIS
-.B dwm
-.RB [ \-v ]
-.SH DESCRIPTION
-dwm is a dynamic window manager for X. It manages windows in tiled, monocle
-and floating layouts. Either layout can be applied dynamically, optimising the
-environment for the application in use and the task performed.
-.P
-In tiled layouts windows are managed in a master and stacking area. The master
-area on the left contains one window by default, and the stacking area on the
-right contains all other windows. The number of master area windows can be
-adjusted from zero to an arbitrary number. In monocle layout all windows are
-maximised to the screen size. In floating layout windows can be resized and
-moved freely. Dialog windows are always managed floating, regardless of the
-layout applied.
-.P
-Windows are grouped by tags. Each window can be tagged with one or multiple
-tags. Selecting certain tags displays all windows with these tags.
-.P
-Each screen contains a small status bar which displays all available tags, the
-layout, the title of the focused window, and the text read from the root window
-name property, if the screen is focused. A floating window is indicated with an
-empty square and a maximised floating window is indicated with a filled square
-before the windows title. The selected tags are indicated with a different
-color. The tags of the focused window are indicated with a filled square in the
-top left corner. The tags which are applied to one or more windows are
-indicated with an empty square in the top left corner.
-.P
-dwm draws a small border around windows to indicate the focus state.
-.SH OPTIONS
-.TP
-.B \-v
-prints version information to standard output, then exits.
-.SH USAGE
-.SS Status bar
-.TP
-.B X root window name
-is read and displayed in the status text area. It can be set with the
-.BR xsetroot (1)
-command.
-.TP
-.B Button1
-click on a tag label to display all windows with that tag, click on the layout
-label toggles between tiled and floating layout.
-.TP
-.B Button3
-click on a tag label adds/removes all windows with that tag to/from the view.
-.TP
-.B Mod1\-Button1
-click on a tag label applies that tag to the focused window.
-.TP
-.B Mod1\-Button3
-click on a tag label adds/removes that tag to/from the focused window.
-.SS Keyboard commands
-.TP
-.B Mod1\-Shift\-Return
-Start
-.BR st(1).
-.TP
-.B Mod1\-p
-Spawn
-.BR dmenu(1)
-for launching other programs.
-.TP
-.B Mod1\-,
-Focus previous screen, if any.
-.TP
-.B Mod1\-.
-Focus next screen, if any.
-.TP
-.B Mod1\-Shift\-,
-Send focused window to previous screen, if any.
-.TP
-.B Mod1\-Shift\-.
-Send focused window to next screen, if any.
-.TP
-.B Mod1\-b
-Toggles bar on and off.
-.TP
-.B Mod1\-t
-Sets tiled layout.
-.TP
-.B Mod1\-f
-Sets floating layout.
-.TP
-.B Mod1\-m
-Sets monocle layout.
-.TP
-.B Mod1\-space
-Toggles between current and previous layout.
-.TP
-.B Mod1\-j
-Focus next window.
-.TP
-.B Mod1\-k
-Focus previous window.
-.TP
-.B Mod1\-i
-Increase number of windows in master area.
-.TP
-.B Mod1\-d
-Decrease number of windows in master area.
-.TP
-.B Mod1\-l
-Increase master area size.
-.TP
-.B Mod1\-h
-Decrease master area size.
-.TP
-.B Mod1\-Return
-Zooms/cycles focused window to/from master area (tiled layouts only).
-.TP
-.B Mod1\-Shift\-c
-Close focused window.
-.TP
-.B Mod1\-Shift\-space
-Toggle focused window between tiled and floating state.
-.TP
-.B Mod1\-Tab
-Toggles to the previously selected tags.
-.TP
-.B Mod1\-Shift\-[1..n]
-Apply nth tag to focused window.
-.TP
-.B Mod1\-Shift\-0
-Apply all tags to focused window.
-.TP
-.B Mod1\-Control\-Shift\-[1..n]
-Add/remove nth tag to/from focused window.
-.TP
-.B Mod1\-[1..n]
-View all windows with nth tag.
-.TP
-.B Mod1\-0
-View all windows with any tag.
-.TP
-.B Mod1\-Control\-[1..n]
-Add/remove all windows with nth tag to/from the view.
-.TP
-.B Mod1\-Shift\-q
-Quit dwm.
-.SS Mouse commands
-.TP
-.B Mod1\-Button1
-Move focused window while dragging. Tiled windows will be toggled to the floating state.
-.TP
-.B Mod1\-Button2
-Toggles focused window between floating and tiled state.
-.TP
-.B Mod1\-Button3
-Resize focused window while dragging. Tiled windows will be toggled to the floating state.
-.SH CUSTOMIZATION
-dwm is customized by creating a custom config.h and (re)compiling the source
-code. This keeps it fast, secure and simple.
-.SH SEE ALSO
-.BR dmenu (1),
-.BR st (1)
-.SH ISSUES
-Java applications which use the XToolkit/XAWT backend may draw grey windows
-only. The XToolkit/XAWT backend breaks ICCCM-compliance in recent JDK 1.5 and early
-JDK 1.6 versions, because it assumes a reparenting window manager. Possible workarounds
-are using JDK 1.4 (which doesn't contain the XToolkit/XAWT backend) or setting the
-environment variable
-.BR AWT_TOOLKIT=MToolkit
-(to use the older Motif backend instead) or running
-.B xprop -root -f _NET_WM_NAME 32a -set _NET_WM_NAME LG3D
-or
-.B wmname LG3D
-(to pretend that a non-reparenting window manager is running that the
-XToolkit/XAWT backend can recognize) or when using OpenJDK setting the environment variable
-.BR _JAVA_AWT_WM_NONREPARENTING=1 .
-.SH BUGS
-Send all bug reports with a patch to hackers@suckless.org.
diff --git a/.repos/dwmold/dwm.c b/.repos/dwmold/dwm.c
deleted file mode 100644
index accc70b..0000000
--- a/.repos/dwmold/dwm.c
+++ /dev/null
@@ -1,2257 +0,0 @@
-/* See LICENSE file for copyright and license details.
- *
- * dynamic window manager is designed like any other X client as well. It is
- * driven through handling X events. In contrast to other X clients, a window
- * manager selects for SubstructureRedirectMask on the root window, to receive
- * events about window (dis-)appearance. Only one X connection at a time is
- * allowed to select for this event mask.
- *
- * The event handlers of dwm are organized in an array which is accessed
- * whenever a new event has been fetched. This allows event dispatching
- * in O(1) time.
- *
- * Each child of the root window is called a client, except windows which have
- * set the override_redirect flag. Clients are organized in a linked client
- * list on each monitor, the focus history is remembered through a stack list
- * on each monitor. Each client contains a bit array to indicate the tags of a
- * client.
- *
- * Keys and tagging rules are organized as arrays and defined in config.h.
- *
- * To understand everything else, start reading main().
- */
-#include <errno.h>
-#include <locale.h>
-#include <signal.h>
-#include <stdarg.h>
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include <unistd.h>
-#include <sys/types.h>
-#include <sys/wait.h>
-#include <X11/cursorfont.h>
-#include <X11/keysym.h>
-#include <X11/Xatom.h>
-#include <X11/Xlib.h>
-#include <X11/Xproto.h>
-#include <X11/Xutil.h>
-#ifdef XINERAMA
-#include <X11/extensions/Xinerama.h>
-#endif /* XINERAMA */
-#include <X11/Xft/Xft.h>
-
-#include "drw.h"
-#include "util.h"
-
-/* macros */
-#define BUTTONMASK (ButtonPressMask|ButtonReleaseMask)
-#define CLEANMASK(mask) (mask & ~(numlockmask|LockMask) & (ShiftMask|ControlMask|Mod1Mask|Mod2Mask|Mod3Mask|Mod4Mask|Mod5Mask))
-#define INTERSECT(x,y,w,h,m) (MAX(0, MIN((x)+(w),(m)->wx+(m)->ww) - MAX((x),(m)->wx)) \
- * MAX(0, MIN((y)+(h),(m)->wy+(m)->wh) - MAX((y),(m)->wy)))
-#define ISVISIBLE(C) ((C->tags & C->mon->tagset[C->mon->seltags]))
-#define LENGTH(X) (sizeof X / sizeof X[0])
-#define MOUSEMASK (BUTTONMASK|PointerMotionMask)
-#define WIDTH(X) ((X)->w + 2 * (X)->bw)
-#define HEIGHT(X) ((X)->h + 2 * (X)->bw)
-#define TAGMASK ((1 << LENGTH(tags)) - 1)
-#define TEXTW(X) (drw_fontset_getwidth(drw, (X)) + lrpad)
-
-/* enums */
-enum { CurNormal, CurResize, CurMove, CurLast }; /* cursor */
-enum { SchemeNorm, SchemeSel }; /* color schemes */
-enum { NetSupported, NetWMName, NetWMState, NetWMCheck,
- NetWMFullscreen, NetActiveWindow, NetWMWindowType,
- NetWMWindowTypeDialog, NetClientList, NetLast }; /* EWMH atoms */
-enum { WMProtocols, WMDelete, WMState, WMTakeFocus, WMLast }; /* default atoms */
-enum { ClkTagBar, ClkLtSymbol, ClkStatusText, ClkWinTitle,
- ClkClientWin, ClkRootWin, ClkLast }; /* clicks */
-
-typedef union {
- int i;
- unsigned int ui;
- float f;
- const void *v;
-} Arg;
-
-typedef struct {
- unsigned int click;
- unsigned int mask;
- unsigned int button;
- void (*func)(const Arg *arg);
- const Arg arg;
-} Button;
-
-typedef struct Monitor Monitor;
-typedef struct Client Client;
-struct Client {
- char name[256];
- float mina, maxa;
- int x, y, w, h;
- int oldx, oldy, oldw, oldh;
- int basew, baseh, incw, inch, maxw, maxh, minw, minh;
- int bw, oldbw;
- unsigned int tags;
- int isfixed, isfloating, isurgent, neverfocus, oldstate, isfullscreen;
- Client *next;
- Client *snext;
- Monitor *mon;
- Window win;
-};
-
-typedef struct {
- unsigned int mod;
- KeySym keysym;
- void (*func)(const Arg *);
- const Arg arg;
-} Key;
-
-typedef struct {
- const char *symbol;
- void (*arrange)(Monitor *);
-} Layout;
-
-struct Monitor {
- char ltsymbol[16];
- float mfact;
- int nmaster;
- int num;
- int by; /* bar geometry */
- int mx, my, mw, mh; /* screen size */
- int wx, wy, ww, wh; /* window area */
- unsigned int seltags;
- unsigned int sellt;
- unsigned int tagset[2];
- int showbar;
- int topbar;
- Client *clients;
- Client *sel;
- Client *stack;
- Monitor *next;
- Window barwin;
- const Layout *lt[2];
-};
-
-typedef struct {
- const char *class;
- const char *instance;
- const char *title;
- unsigned int tags;
- int isfloating;
- int monitor;
-} Rule;
-
-/* function declarations */
-static void applyrules(Client *c);
-static int applysizehints(Client *c, int *x, int *y, int *w, int *h, int interact);
-static void arrange(Monitor *m);
-static void arrangemon(Monitor *m);
-static void attach(Client *c);
-static void attachstack(Client *c);
-static void buttonpress(XEvent *e);
-static void checkotherwm(void);
-static void cleanup(void);
-static void cleanupmon(Monitor *mon);
-static void clientmessage(XEvent *e);
-static void configure(Client *c);
-static void configurenotify(XEvent *e);
-static void configurerequest(XEvent *e);
-static Monitor *createmon(void);
-static void destroynotify(XEvent *e);
-static void detach(Client *c);
-static void detachstack(Client *c);
-static Monitor *dirtomon(int dir);
-static void drawbar(Monitor *m);
-static void drawbars(void);
-static void enqueue(Client *c);
-static void enqueuestack(Client *c);
-static void enternotify(XEvent *e);
-static void expose(XEvent *e);
-static void focus(Client *c);
-static void focusin(XEvent *e);
-static void focusmon(const Arg *arg);
-static void focusstack(const Arg *arg);
-static int getrootptr(int *x, int *y);
-static long getstate(Window w);
-static int gettextprop(Window w, Atom atom, char *text, unsigned int size);
-static void grabbuttons(Client *c, int focused);
-static void grabkeys(void);
-static void incnmaster(const Arg *arg);
-static void keypress(XEvent *e);
-static void killclient(const Arg *arg);
-static void manage(Window w, XWindowAttributes *wa);
-static void mappingnotify(XEvent *e);
-static void maprequest(XEvent *e);
-static void monocle(Monitor *m);
-static void motionnotify(XEvent *e);
-static void movemouse(const Arg *arg);
-static Client *nexttiled(Client *c);
-static void pop(Client *);
-static void propertynotify(XEvent *e);
-static void quit(const Arg *arg);
-static Monitor *recttomon(int x, int y, int w, int h);
-static void resize(Client *c, int x, int y, int w, int h, int interact);
-static void resizeclient(Client *c, int x, int y, int w, int h);
-static void resizemouse(const Arg *arg);
-static void restack(Monitor *m);
-static void rotatestack(const Arg *arg);
-static void run(void);
-static void scan(void);
-static int sendevent(Client *c, Atom proto);
-static void sendmon(Client *c, Monitor *m);
-static void setclientstate(Client *c, long state);
-static void setfocus(Client *c);
-static void setfullscreen(Client *c, int fullscreen);
-static void setlayout(const Arg *arg);
-static void setmfact(const Arg *arg);
-static void setup(void);
-static void seturgent(Client *c, int urg);
-static void showhide(Client *c);
-static void sigchld(int unused);
-static void spawn(const Arg *arg);
-static void tag(const Arg *arg);
-static void tagmon(const Arg *arg);
-static void tile(Monitor *);
-static void togglebar(const Arg *arg);
-static void togglefloating(const Arg *arg);
-static void togglescratch(const Arg *arg);
-static void toggletag(const Arg *arg);
-static void toggleview(const Arg *arg);
-static void unfocus(Client *c, int setfocus);
-static void unmanage(Client *c, int destroyed);
-static void unmapnotify(XEvent *e);
-static void updatebarpos(Monitor *m);
-static void updatebars(void);
-static void updateclientlist(void);
-static int updategeom(void);
-static void updatenumlockmask(void);
-static void updatesizehints(Client *c);
-static void updatestatus(void);
-static void updatetitle(Client *c);
-static void updatewindowtype(Client *c);
-static void updatewmhints(Client *c);
-static void view(const Arg *arg);
-static Client *wintoclient(Window w);
-static Monitor *wintomon(Window w);
-static int xerror(Display *dpy, XErrorEvent *ee);
-static int xerrordummy(Display *dpy, XErrorEvent *ee);
-static int xerrorstart(Display *dpy, XErrorEvent *ee);
-static void zoom(const Arg *arg);
-
-/* variables */
-static const char broken[] = "broken";
-static char stext[256];
-static int screen;
-static int sw, sh; /* X display screen geometry width, height */
-static int bh, blw = 0; /* bar geometry */
-static int lrpad; /* sum of left and right padding for text */
-static int (*xerrorxlib)(Display *, XErrorEvent *);
-static unsigned int numlockmask = 0;
-static void (*handler[LASTEvent]) (XEvent *) = {
- [ButtonPress] = buttonpress,
- [ClientMessage] = clientmessage,
- [ConfigureRequest] = configurerequest,
- [ConfigureNotify] = configurenotify,
- [DestroyNotify] = destroynotify,
- [EnterNotify] = enternotify,
- [Expose] = expose,
- [FocusIn] = focusin,
- [KeyPress] = keypress,
- [MappingNotify] = mappingnotify,
- [MapRequest] = maprequest,
- [MotionNotify] = motionnotify,
- [PropertyNotify] = propertynotify,
- [UnmapNotify] = unmapnotify
-};
-static Atom wmatom[WMLast], netatom[NetLast];
-static int running = 1;
-static Cur *cursor[CurLast];
-static Clr **scheme;
-static Display *dpy;
-static Drw *drw;
-static Monitor *mons, *selmon;
-static Window root, wmcheckwin;
-
-/* configuration, allows nested code to access above variables */
-#include "config.h"
-
-static unsigned int scratchtag = 1 << LENGTH(tags);
-
-/* compile-time check if all tags fit into an unsigned int bit array. */
-struct NumTags { char limitexceeded[LENGTH(tags) > 31 ? -1 : 1]; };
-
-/* function implementations */
-void
-applyrules(Client *c)
-{
- const char *class, *instance;
- unsigned int i;
- const Rule *r;
- Monitor *m;
- XClassHint ch = { NULL, NULL };
-
- /* rule matching */
- c->isfloating = 0;
- c->tags = 0;
- XGetClassHint(dpy, c->win, &ch);
- class = ch.res_class ? ch.res_class : broken;
- instance = ch.res_name ? ch.res_name : broken;
-
- for (i = 0; i < LENGTH(rules); i++) {
- r = &rules[i];
- if ((!r->title || strstr(c->name, r->title))
- && (!r->class || strstr(class, r->class))
- && (!r->instance || strstr(instance, r->instance)))
- {
- c->isfloating = r->isfloating;
- c->tags |= r->tags;
- for (m = mons; m && m->num != r->monitor; m = m->next);
- if (m)
- c->mon = m;
- }
- }
- if (ch.res_class)
- XFree(ch.res_class);
- if (ch.res_name)
- XFree(ch.res_name);
- c->tags = c->tags & TAGMASK ? c->tags & TAGMASK : c->mon->tagset[c->mon->seltags];
-}
-
-int
-applysizehints(Client *c, int *x, int *y, int *w, int *h, int interact)
-{
- int baseismin;
- Monitor *m = c->mon;
-
- /* set minimum possible */
- *w = MAX(1, *w);
- *h = MAX(1, *h);
- if (interact) {
- if (*x > sw)
- *x = sw - WIDTH(c);
- if (*y > sh)
- *y = sh - HEIGHT(c);
- if (*x + *w + 2 * c->bw < 0)
- *x = 0;
- if (*y + *h + 2 * c->bw < 0)
- *y = 0;
- } else {
- if (*x >= m->wx + m->ww)
- *x = m->wx + m->ww - WIDTH(c);
- if (*y >= m->wy + m->wh)
- *y = m->wy + m->wh - HEIGHT(c);
- if (*x + *w + 2 * c->bw <= m->wx)
- *x = m->wx;
- if (*y + *h + 2 * c->bw <= m->wy)
- *y = m->wy;
- }
- if (*h < bh)
- *h = bh;
- if (*w < bh)
- *w = bh;
- if (resizehints || c->isfloating || !c->mon->lt[c->mon->sellt]->arrange) {
- /* see last two sentences in ICCCM 4.1.2.3 */
- baseismin = c->basew == c->minw && c->baseh == c->minh;
- if (!baseismin) { /* temporarily remove base dimensions */
- *w -= c->basew;
- *h -= c->baseh;
- }
- /* adjust for aspect limits */
- if (c->mina > 0 && c->maxa > 0) {
- if (c->maxa < (float)*w / *h)
- *w = *h * c->maxa + 0.5;
- else if (c->mina < (float)*h / *w)
- *h = *w * c->mina + 0.5;
- }
- if (baseismin) { /* increment calculation requires this */
- *w -= c->basew;
- *h -= c->baseh;
- }
- /* adjust for increment value */
- if (c->incw)
- *w -= *w % c->incw;
- if (c->inch)
- *h -= *h % c->inch;
- /* restore base dimensions */
- *w = MAX(*w + c->basew, c->minw);
- *h = MAX(*h + c->baseh, c->minh);
- if (c->maxw)
- *w = MIN(*w, c->maxw);
- if (c->maxh)
- *h = MIN(*h, c->maxh);
- }
- return *x != c->x || *y != c->y || *w != c->w || *h != c->h;
-}
-
-void
-arrange(Monitor *m)
-{
- if (m)
- showhide(m->stack);
- else for (m = mons; m; m = m->next)
- showhide(m->stack);
- if (m) {
- arrangemon(m);
- restack(m);
- } else for (m = mons; m; m = m->next)
- arrangemon(m);
-}
-
-void
-arrangemon(Monitor *m)
-{
- strncpy(m->ltsymbol, m->lt[m->sellt]->symbol, sizeof m->ltsymbol);
- if (m->lt[m->sellt]->arrange)
- m->lt[m->sellt]->arrange(m);
-}
-
-void
-attach(Client *c)
-{
- c->next = c->mon->clients;
- c->mon->clients = c;
-}
-
-void
-attachstack(Client *c)
-{
- c->snext = c->mon->stack;
- c->mon->stack = c;
-}
-
-void
-buttonpress(XEvent *e)
-{
- unsigned int i, x, click;
- Arg arg = {0};
- Client *c;
- Monitor *m;
- XButtonPressedEvent *ev = &e->xbutton;
-
- click = ClkRootWin;
- /* focus monitor if necessary */
- if ((m = wintomon(ev->window)) && m != selmon) {
- unfocus(selmon->sel, 1);
- selmon = m;
- focus(NULL);
- }
- if (ev->window == selmon->barwin) {
- i = x = 0;
- do
- x += TEXTW(tags[i]);
- while (ev->x >= x && ++i < LENGTH(tags));
- if (i < LENGTH(tags)) {
- click = ClkTagBar;
- arg.ui = 1 << i;
- } else if (ev->x < x + blw)
- click = ClkLtSymbol;
- else if (ev->x > selmon->ww - TEXTW(stext))
- click = ClkStatusText;
- else
- click = ClkWinTitle;
- } else if ((c = wintoclient(ev->window))) {
- focus(c);
- restack(selmon);
- XAllowEvents(dpy, ReplayPointer, CurrentTime);
- click = ClkClientWin;
- }
- for (i = 0; i < LENGTH(buttons); i++)
- if (click == buttons[i].click && buttons[i].func && buttons[i].button == ev->button
- && CLEANMASK(buttons[i].mask) == CLEANMASK(ev->state))
- buttons[i].func(click == ClkTagBar && buttons[i].arg.i == 0 ? &arg : &buttons[i].arg);
-}
-
-void
-checkotherwm(void)
-{
- xerrorxlib = XSetErrorHandler(xerrorstart);
- /* this causes an error if some other window manager is running */
- XSelectInput(dpy, DefaultRootWindow(dpy), SubstructureRedirectMask);
- XSync(dpy, False);
- XSetErrorHandler(xerror);
- XSync(dpy, False);
-}
-
-void
-cleanup(void)
-{
- Arg a = {.ui = ~0};
- Layout foo = { "", NULL };
- Monitor *m;
- size_t i;
-
- view(&a);
- selmon->lt[selmon->sellt] = &foo;
- for (m = mons; m; m = m->next)
- while (m->stack)
- unmanage(m->stack, 0);
- XUngrabKey(dpy, AnyKey, AnyModifier, root);
- while (mons)
- cleanupmon(mons);
- for (i = 0; i < CurLast; i++)
- drw_cur_free(drw, cursor[i]);
- for (i = 0; i < LENGTH(colors); i++)
- free(scheme[i]);
- XDestroyWindow(dpy, wmcheckwin);
- drw_free(drw);
- XSync(dpy, False);
- XSetInputFocus(dpy, PointerRoot, RevertToPointerRoot, CurrentTime);
- XDeleteProperty(dpy, root, netatom[NetActiveWindow]);
-}
-
-void
-cleanupmon(Monitor *mon)
-{
- Monitor *m;
-
- if (mon == mons)
- mons = mons->next;
- else {
- for (m = mons; m && m->next != mon; m = m->next);
- m->next = mon->next;
- }
- XUnmapWindow(dpy, mon->barwin);
- XDestroyWindow(dpy, mon->barwin);
- free(mon);
-}
-
-void
-clientmessage(XEvent *e)
-{
- XClientMessageEvent *cme = &e->xclient;
- Client *c = wintoclient(cme->window);
-
- if (!c)
- return;
- if (cme->message_type == netatom[NetWMState]) {
- if (cme->data.l[1] == netatom[NetWMFullscreen]
- || cme->data.l[2] == netatom[NetWMFullscreen])
- setfullscreen(c, (cme->data.l[0] == 1 /* _NET_WM_STATE_ADD */
- || (cme->data.l[0] == 2 /* _NET_WM_STATE_TOGGLE */ && !c->isfullscreen)));
- } else if (cme->message_type == netatom[NetActiveWindow]) {
- if (c != selmon->sel && !c->isurgent)
- seturgent(c, 1);
- }
-}
-
-void
-configure(Client *c)
-{
- XConfigureEvent ce;
-
- ce.type = ConfigureNotify;
- ce.display = dpy;
- ce.event = c->win;
- ce.window = c->win;
- ce.x = c->x;
- ce.y = c->y;
- ce.width = c->w;
- ce.height = c->h;
- ce.border_width = c->bw;
- ce.above = None;
- ce.override_redirect = False;
- XSendEvent(dpy, c->win, False, StructureNotifyMask, (XEvent *)&ce);
-}
-
-void
-configurenotify(XEvent *e)
-{
- Monitor *m;
- Client *c;
- XConfigureEvent *ev = &e->xconfigure;
- int dirty;
-
- /* TODO: updategeom handling sucks, needs to be simplified */
- if (ev->window == root) {
- dirty = (sw != ev->width || sh != ev->height);
- sw = ev->width;
- sh = ev->height;
- if (updategeom() || dirty) {
- drw_resize(drw, sw, bh);
- updatebars();
- for (m = mons; m; m = m->next) {
- for (c = m->clients; c; c = c->next)
- if (c->isfullscreen)
- resizeclient(c, m->mx, m->my, m->mw, m->mh);
- XMoveResizeWindow(dpy, m->barwin, m->wx, m->by, m->ww, bh);
- }
- focus(NULL);
- arrange(NULL);
- }
- }
-}
-
-void
-configurerequest(XEvent *e)
-{
- Client *c;
- Monitor *m;
- XConfigureRequestEvent *ev = &e->xconfigurerequest;
- XWindowChanges wc;
-
- if ((c = wintoclient(ev->window))) {
- if (ev->value_mask & CWBorderWidth)
- c->bw = ev->border_width;
- else if (c->isfloating || !selmon->lt[selmon->sellt]->arrange) {
- m = c->mon;
- if (ev->value_mask & CWX) {
- c->oldx = c->x;
- c->x = m->mx + ev->x;
- }
- if (ev->value_mask & CWY) {
- c->oldy = c->y;
- c->y = m->my + ev->y;
- }
- if (ev->value_mask & CWWidth) {
- c->oldw = c->w;
- c->w = ev->width;
- }
- if (ev->value_mask & CWHeight) {
- c->oldh = c->h;
- c->h = ev->height;
- }
- if ((c->x + c->w) > m->mx + m->mw && c->isfloating)
- c->x = m->mx + (m->mw / 2 - WIDTH(c) / 2); /* center in x direction */
- if ((c->y + c->h) > m->my + m->mh && c->isfloating)
- c->y = m->my + (m->mh / 2 - HEIGHT(c) / 2); /* center in y direction */
- if ((ev->value_mask & (CWX|CWY)) && !(ev->value_mask & (CWWidth|CWHeight)))
- configure(c);
- if (ISVISIBLE(c))
- XMoveResizeWindow(dpy, c->win, c->x, c->y, c->w, c->h);
- } else
- configure(c);
- } else {
- wc.x = ev->x;
- wc.y = ev->y;
- wc.width = ev->width;
- wc.height = ev->height;
- wc.border_width = ev->border_width;
- wc.sibling = ev->above;
- wc.stack_mode = ev->detail;
- XConfigureWindow(dpy, ev->window, ev->value_mask, &wc);
- }
- XSync(dpy, False);
-}
-
-Monitor *
-createmon(void)
-{
- Monitor *m;
-
- m = ecalloc(1, sizeof(Monitor));
- m->tagset[0] = m->tagset[1] = 1;
- m->mfact = mfact;
- m->nmaster = nmaster;
- m->showbar = showbar;
- m->topbar = topbar;
- m->lt[0] = &layouts[0];
- m->lt[1] = &layouts[1 % LENGTH(layouts)];
- strncpy(m->ltsymbol, layouts[0].symbol, sizeof m->ltsymbol);
- return m;
-}
-
-void
-destroynotify(XEvent *e)
-{
- Client *c;
- XDestroyWindowEvent *ev = &e->xdestroywindow;
-
- if ((c = wintoclient(ev->window)))
- unmanage(c, 1);
-}
-
-void
-detach(Client *c)
-{
- Client **tc;
-
- for (tc = &c->mon->clients; *tc && *tc != c; tc = &(*tc)->next);
- *tc = c->next;
-}
-
-void
-detachstack(Client *c)
-{
- Client **tc, *t;
-
- for (tc = &c->mon->stack; *tc && *tc != c; tc = &(*tc)->snext);
- *tc = c->snext;
-
- if (c == c->mon->sel) {
- for (t = c->mon->stack; t && !ISVISIBLE(t); t = t->snext);
- c->mon->sel = t;
- }
-}
-
-Monitor *
-dirtomon(int dir)
-{
- Monitor *m = NULL;
-
- if (dir > 0) {
- if (!(m = selmon->next))
- m = mons;
- } else if (selmon == mons)
- for (m = mons; m->next; m = m->next);
- else
- for (m = mons; m->next != selmon; m = m->next);
- return m;
-}
-
-void
-drawbar(Monitor *m)
-{
- int x, w, sw = 0;
- int boxs = drw->fonts->h / 9;
- int boxw = drw->fonts->h / 6 + 2;
- unsigned int i, occ = 0, urg = 0;
- Client *c;
-
- /* draw status first so it can be overdrawn by tags later */
- if (m == selmon) { /* status is only drawn on selected monitor */
- drw_setscheme(drw, scheme[SchemeNorm]);
- sw = TEXTW(stext) - lrpad + 2; /* 2px right padding */
- drw_text(drw, m->ww - sw, 0, sw, bh, 0, stext, 0);
- }
-
- for (c = m->clients; c; c = c->next) {
- occ |= c->tags;
- if (c->isurgent)
- urg |= c->tags;
- }
- x = 0;
- for (i = 0; i < LENGTH(tags); i++) {
- w = TEXTW(tags[i]);
- drw_setscheme(drw, scheme[m->tagset[m->seltags] & 1 << i ? SchemeSel : SchemeNorm]);
- drw_text(drw, x, 0, w, bh, lrpad / 2, tags[i], urg & 1 << i);
- if (occ & 1 << i)
- drw_rect(drw, x + boxs, boxs, boxw, boxw,
- m == selmon && selmon->sel && selmon->sel->tags & 1 << i,
- urg & 1 << i);
- x += w;
- }
- w = blw = TEXTW(m->ltsymbol);
- drw_setscheme(drw, scheme[SchemeNorm]);
- x = drw_text(drw, x, 0, w, bh, lrpad / 2, m->ltsymbol, 0);
-
- if ((w = m->ww - sw - x) > bh) {
- if (m->sel) {
- drw_setscheme(drw, scheme[m == selmon ? SchemeSel : SchemeNorm]);
- drw_text(drw, x, 0, w, bh, lrpad / 2, m->sel->name, 0);
- if (m->sel->isfloating)
- drw_rect(drw, x + boxs, boxs, boxw, boxw, m->sel->isfixed, 0);
- } else {
- drw_setscheme(drw, scheme[SchemeNorm]);
- drw_rect(drw, x, 0, w, bh, 1, 1);
- }
- }
- drw_map(drw, m->barwin, 0, 0, m->ww, bh);
-}
-
-void
-drawbars(void)
-{
- Monitor *m;
-
- for (m = mons; m; m = m->next)
- drawbar(m);
-}
-
-void
-enqueue(Client *c)
-{
- Client *l;
- for (l = c->mon->clients; l && l->next; l = l->next);
- if (l) {
- l->next = c;
- c->next = NULL;
- }
-}
-
-void
-enqueuestack(Client *c)
-{
- Client *l;
- for (l = c->mon->stack; l && l->snext; l = l->snext);
- if (l) {
- l->snext = c;
- c->snext = NULL;
- }
-}
-
-void
-enternotify(XEvent *e)
-{
- Client *c;
- Monitor *m;
- XCrossingEvent *ev = &e->xcrossing;
-
- if ((ev->mode != NotifyNormal || ev->detail == NotifyInferior) && ev->window != root)
- return;
- c = wintoclient(ev->window);
- m = c ? c->mon : wintomon(ev->window);
- if (m != selmon) {
- unfocus(selmon->sel, 1);
- selmon = m;
- } else if (!c || c == selmon->sel)
- return;
- focus(c);
-}
-
-void
-expose(XEvent *e)
-{
- Monitor *m;
- XExposeEvent *ev = &e->xexpose;
-
- if (ev->count == 0 && (m = wintomon(ev->window)))
- drawbar(m);
-}
-
-void
-focus(Client *c)
-{
- XWindowChanges wc;
-
- if (!c || !ISVISIBLE(c))
- for (c = selmon->stack; c && !ISVISIBLE(c); c = c->snext);
- if (selmon->sel && selmon->sel != c)
- unfocus(selmon->sel, 0);
- if (c) {
- if (c->mon != selmon)
- selmon = c->mon;
- if (c->isurgent)
- seturgent(c, 0);
- detachstack(c);
- attachstack(c);
- grabbuttons(c, 1);
- XSetWindowBorder(dpy, c->win, scheme[SchemeSel][ColBorder].pixel);
- if(!c->isfloating) {
- wc.sibling = selmon->barwin;
- wc.stack_mode = Below;
- XConfigureWindow(dpy, c->win, CWSibling | CWStackMode, &wc);
- }
- setfocus(c);
- } else {
- XSetInputFocus(dpy, root, RevertToPointerRoot, CurrentTime);
- XDeleteProperty(dpy, root, netatom[NetActiveWindow]);
- }
- selmon->sel = c;
- drawbars();
-}
-
-/* there are some broken focus acquiring clients needing extra handling */
-void
-focusin(XEvent *e)
-{
- XFocusChangeEvent *ev = &e->xfocus;
-
- if (selmon->sel && ev->window != selmon->sel->win)
- setfocus(selmon->sel);
-}
-
-void
-focusmon(const Arg *arg)
-{
- Monitor *m;
-
- if (!mons->next)
- return;
- if ((m = dirtomon(arg->i)) == selmon)
- return;
- unfocus(selmon->sel, 0);
- selmon = m;
- focus(NULL);
-}
-
-void
-focusstack(const Arg *arg)
-{
- Client *c = NULL, *i;
-
- if (!selmon->sel)
- return;
- if (arg->i > 0) {
- for (c = selmon->sel->next; c && !ISVISIBLE(c); c = c->next);
- if (!c)
- for (c = selmon->clients; c && !ISVISIBLE(c); c = c->next);
- } else {
- for (i = selmon->clients; i != selmon->sel; i = i->next)
- if (ISVISIBLE(i))
- c = i;
- if (!c)
- for (; i; i = i->next)
- if (ISVISIBLE(i))
- c = i;
- }
- if (c) {
- focus(c);
- restack(selmon);
- }
-}
-
-Atom
-getatomprop(Client *c, Atom prop)
-{
- int di;
- unsigned long dl;
- unsigned char *p = NULL;
- Atom da, atom = None;
-
- if (XGetWindowProperty(dpy, c->win, prop, 0L, sizeof atom, False, XA_ATOM,
- &da, &di, &dl, &dl, &p) == Success && p) {
- atom = *(Atom *)p;
- XFree(p);
- }
- return atom;
-}
-
-int
-getrootptr(int *x, int *y)
-{
- int di;
- unsigned int dui;
- Window dummy;
-
- return XQueryPointer(dpy, root, &dummy, &dummy, x, y, &di, &di, &dui);
-}
-
-long
-getstate(Window w)
-{
- int format;
- long result = -1;
- unsigned char *p = NULL;
- unsigned long n, extra;
- Atom real;
-
- if (XGetWindowProperty(dpy, w, wmatom[WMState], 0L, 2L, False, wmatom[WMState],
- &real, &format, &n, &extra, (unsigned char **)&p) != Success)
- return -1;
- if (n != 0)
- result = *p;
- XFree(p);
- return result;
-}
-
-int
-gettextprop(Window w, Atom atom, char *text, unsigned int size)
-{
- char **list = NULL;
- int n;
- XTextProperty name;
-
- if (!text || size == 0)
- return 0;
- text[0] = '\0';
- if (!XGetTextProperty(dpy, w, &name, atom) || !name.nitems)
- return 0;
- if (name.encoding == XA_STRING)
- strncpy(text, (char *)name.value, size - 1);
- else {
- if (XmbTextPropertyToTextList(dpy, &name, &list, &n) >= Success && n > 0 && *list) {
- strncpy(text, *list, size - 1);
- XFreeStringList(list);
- }
- }
- text[size - 1] = '\0';
- XFree(name.value);
- return 1;
-}
-
-void
-grabbuttons(Client *c, int focused)
-{
- updatenumlockmask();
- {
- unsigned int i, j;
- unsigned int modifiers[] = { 0, LockMask, numlockmask, numlockmask|LockMask };
- XUngrabButton(dpy, AnyButton, AnyModifier, c->win);
- if (!focused)
- XGrabButton(dpy, AnyButton, AnyModifier, c->win, False,
- BUTTONMASK, GrabModeSync, GrabModeSync, None, None);
- for (i = 0; i < LENGTH(buttons); i++)
- if (buttons[i].click == ClkClientWin)
- for (j = 0; j < LENGTH(modifiers); j++)
- XGrabButton(dpy, buttons[i].button,
- buttons[i].mask | modifiers[j],
- c->win, False, BUTTONMASK,
- GrabModeAsync, GrabModeSync, None, None);
- }
-}
-
-void
-grabkeys(void)
-{
- updatenumlockmask();
- {
- unsigned int i, j;
- unsigned int modifiers[] = { 0, LockMask, numlockmask, numlockmask|LockMask };
- KeyCode code;
-
- XUngrabKey(dpy, AnyKey, AnyModifier, root);
- for (i = 0; i < LENGTH(keys); i++)
- if ((code = XKeysymToKeycode(dpy, keys[i].keysym)))
- for (j = 0; j < LENGTH(modifiers); j++)
- XGrabKey(dpy, code, keys[i].mod | modifiers[j], root,
- True, GrabModeAsync, GrabModeAsync);
- }
-}
-
-void
-incnmaster(const Arg *arg)
-{
- selmon->nmaster = MAX(selmon->nmaster + arg->i, 0);
- arrange(selmon);
-}
-
-#ifdef XINERAMA
-static int
-isuniquegeom(XineramaScreenInfo *unique, size_t n, XineramaScreenInfo *info)
-{
- while (n--)
- if (unique[n].x_org == info->x_org && unique[n].y_org == info->y_org
- && unique[n].width == info->width && unique[n].height == info->height)
- return 0;
- return 1;
-}
-#endif /* XINERAMA */
-
-void
-keypress(XEvent *e)
-{
- unsigned int i;
- KeySym keysym;
- XKeyEvent *ev;
-
- ev = &e->xkey;
- keysym = XKeycodeToKeysym(dpy, (KeyCode)ev->keycode, 0);
- for (i = 0; i < LENGTH(keys); i++)
- if (keysym == keys[i].keysym
- && CLEANMASK(keys[i].mod) == CLEANMASK(ev->state)
- && keys[i].func)
- keys[i].func(&(keys[i].arg));
-}
-
-void
-killclient(const Arg *arg)
-{
- if (!selmon->sel)
- return;
- if (!sendevent(selmon->sel, wmatom[WMDelete])) {
- XGrabServer(dpy);
- XSetErrorHandler(xerrordummy);
- XSetCloseDownMode(dpy, DestroyAll);
- XKillClient(dpy, selmon->sel->win);
- XSync(dpy, False);
- XSetErrorHandler(xerror);
- XUngrabServer(dpy);
- }
-}
-
-void
-manage(Window w, XWindowAttributes *wa)
-{
- Client *c, *t = NULL;
- Window trans = None;
- XWindowChanges wc;
-
- c = ecalloc(1, sizeof(Client));
- c->win = w;
- /* geometry */
- c->x = c->oldx = wa->x;
- c->y = c->oldy = wa->y;
- c->w = c->oldw = wa->width;
- c->h = c->oldh = wa->height;
- c->oldbw = wa->border_width;
-
- updatetitle(c);
- if (XGetTransientForHint(dpy, w, &trans) && (t = wintoclient(trans))) {
- c->mon = t->mon;
- c->tags = t->tags;
- } else {
- c->mon = selmon;
- applyrules(c);
- }
-
- if (c->x + WIDTH(c) > c->mon->mx + c->mon->mw)
- c->x = c->mon->mx + c->mon->mw - WIDTH(c);
- if (c->y + HEIGHT(c) > c->mon->my + c->mon->mh)
- c->y = c->mon->my + c->mon->mh - HEIGHT(c);
- c->x = MAX(c->x, c->mon->mx);
- /* only fix client y-offset, if the client center might cover the bar */
- c->y = MAX(c->y, ((c->mon->by == c->mon->my) && (c->x + (c->w / 2) >= c->mon->wx)
- && (c->x + (c->w / 2) < c->mon->wx + c->mon->ww)) ? bh : c->mon->my);
- c->bw = borderpx;
-
- selmon->tagset[selmon->seltags] &= ~scratchtag;
- if (!strcmp(c->name, scratchpadname)) {
- c->mon->tagset[c->mon->seltags] |= c->tags = scratchtag;
- c->isfloating = True;
- c->x = c->mon->wx + (c->mon->ww / 2 - WIDTH(c) / 2);
- c->y = c->mon->wy + (c->mon->wh / 2 - HEIGHT(c) / 2);
- }
-
- wc.border_width = c->bw;
- XConfigureWindow(dpy, w, CWBorderWidth, &wc);
- XSetWindowBorder(dpy, w, scheme[SchemeNorm][ColBorder].pixel);
- configure(c); /* propagates border_width, if size doesn't change */
- updatewindowtype(c);
- updatesizehints(c);
- updatewmhints(c);
- XSelectInput(dpy, w, EnterWindowMask|FocusChangeMask|PropertyChangeMask|StructureNotifyMask);
- grabbuttons(c, 0);
- if (!c->isfloating)
- c->isfloating = c->oldstate = trans != None || c->isfixed;
- if (c->isfloating)
- XRaiseWindow(dpy, c->win);
- attach(c);
- attachstack(c);
- XChangeProperty(dpy, root, netatom[NetClientList], XA_WINDOW, 32, PropModeAppend,
- (unsigned char *) &(c->win), 1);
- XMoveResizeWindow(dpy, c->win, c->x + 2 * sw, c->y, c->w, c->h); /* some windows require this */
- setclientstate(c, NormalState);
- if (c->mon == selmon)
- unfocus(selmon->sel, 0);
- c->mon->sel = c;
- arrange(c->mon);
- XMapWindow(dpy, c->win);
- focus(NULL);
-}
-
-void
-mappingnotify(XEvent *e)
-{
- XMappingEvent *ev = &e->xmapping;
-
- XRefreshKeyboardMapping(ev);
- if (ev->request == MappingKeyboard)
- grabkeys();
-}
-
-void
-maprequest(XEvent *e)
-{
- static XWindowAttributes wa;
- XMapRequestEvent *ev = &e->xmaprequest;
-
- if (!XGetWindowAttributes(dpy, ev->window, &wa))
- return;
- if (wa.override_redirect)
- return;
- if (!wintoclient(ev->window))
- manage(ev->window, &wa);
-}
-
-void
-monocle(Monitor *m)
-{
- unsigned int n = 0;
- Client *c;
-
- for (c = m->clients; c; c = c->next)
- if (ISVISIBLE(c))
- n++;
- if (n > 0) /* override layout symbol */
- snprintf(m->ltsymbol, sizeof m->ltsymbol, "[%d]", n);
- for (c = nexttiled(m->clients); c; c = nexttiled(c->next))
- resize(c, m->wx - c->bw, m->wy, m->ww, m->wh, False);
-}
-
-void
-motionnotify(XEvent *e)
-{
- static Monitor *mon = NULL;
- Monitor *m;
- XMotionEvent *ev = &e->xmotion;
-
- if (ev->window != root)
- return;
- if ((m = recttomon(ev->x_root, ev->y_root, 1, 1)) != mon && mon) {
- unfocus(selmon->sel, 1);
- selmon = m;
- focus(NULL);
- }
- mon = m;
-}
-
-void
-movemouse(const Arg *arg)
-{
- int x, y, ocx, ocy, nx, ny;
- Client *c;
- Monitor *m;
- XEvent ev;
- Time lasttime = 0;
-
- if (!(c = selmon->sel))
- return;
- if (c->isfullscreen) /* no support moving fullscreen windows by mouse */
- return;
- restack(selmon);
- ocx = c->x;
- ocy = c->y;
- if (XGrabPointer(dpy, root, False, MOUSEMASK, GrabModeAsync, GrabModeAsync,
- None, cursor[CurMove]->cursor, CurrentTime) != GrabSuccess)
- return;
- if (!getrootptr(&x, &y))
- return;
- do {
- XMaskEvent(dpy, MOUSEMASK|ExposureMask|SubstructureRedirectMask, &ev);
- switch(ev.type) {
- case ConfigureRequest:
- case Expose:
- case MapRequest:
- handler[ev.type](&ev);
- break;
- case MotionNotify:
- if ((ev.xmotion.time - lasttime) <= (1000 / 60))
- continue;
- lasttime = ev.xmotion.time;
-
- nx = ocx + (ev.xmotion.x - x);
- ny = ocy + (ev.xmotion.y - y);
- if (abs(selmon->wx - nx) < snap)
- nx = selmon->wx;
- else if (abs((selmon->wx + selmon->ww) - (nx + WIDTH(c))) < snap)
- nx = selmon->wx + selmon->ww - WIDTH(c);
- if (abs(selmon->wy - ny) < snap)
- ny = selmon->wy;
- else if (abs((selmon->wy + selmon->wh) - (ny + HEIGHT(c))) < snap)
- ny = selmon->wy + selmon->wh - HEIGHT(c);
- if (!c->isfloating && selmon->lt[selmon->sellt]->arrange
- && (abs(nx - c->x) > snap || abs(ny - c->y) > snap))
- togglefloating(NULL);
- if (!selmon->lt[selmon->sellt]->arrange || c->isfloating)
- resize(c, nx, ny, c->w, c->h, 1);
- break;
- }
- } while (ev.type != ButtonRelease);
- XUngrabPointer(dpy, CurrentTime);
- if ((m = recttomon(c->x, c->y, c->w, c->h)) != selmon) {
- sendmon(c, m);
- selmon = m;
- focus(NULL);
- }
-}
-
-Client *
-nexttiled(Client *c)
-{
- for (; c && (c->isfloating || !ISVISIBLE(c)); c = c->next);
- return c;
-}
-
-void
-pop(Client *c)
-{
- detach(c);
- attach(c);
- focus(c);
- arrange(c->mon);
-}
-
-void
-propertynotify(XEvent *e)
-{
- Client *c;
- Window trans;
- XPropertyEvent *ev = &e->xproperty;
-
- if ((ev->window == root) && (ev->atom == XA_WM_NAME))
- updatestatus();
- else if (ev->state == PropertyDelete)
- return; /* ignore */
- else if ((c = wintoclient(ev->window))) {
- switch(ev->atom) {
- default: break;
- case XA_WM_TRANSIENT_FOR:
- if (!c->isfloating && (XGetTransientForHint(dpy, c->win, &trans)) &&
- (c->isfloating = (wintoclient(trans)) != NULL))
- arrange(c->mon);
- break;
- case XA_WM_NORMAL_HINTS:
- updatesizehints(c);
- break;
- case XA_WM_HINTS:
- updatewmhints(c);
- drawbars();
- break;
- }
- if (ev->atom == XA_WM_NAME || ev->atom == netatom[NetWMName]) {
- updatetitle(c);
- if (c == c->mon->sel)
- drawbar(c->mon);
- }
- if (ev->atom == netatom[NetWMWindowType])
- updatewindowtype(c);
- }
-}
-
-void
-quit(const Arg *arg)
-{
- running = 0;
-}
-
-Monitor *
-recttomon(int x, int y, int w, int h)
-{
- Monitor *m, *r = selmon;
- int a, area = 0;
-
- for (m = mons; m; m = m->next)
- if ((a = INTERSECT(x, y, w, h, m)) > area) {
- area = a;
- r = m;
- }
- return r;
-}
-
-void
-resize(Client *c, int x, int y, int w, int h, int interact)
-{
- if (applysizehints(c, &x, &y, &w, &h, interact))
- resizeclient(c, x, y, w, h);
-}
-
-void
-resizeclient(Client *c, int x, int y, int w, int h)
-{
- XWindowChanges wc;
-
- c->oldx = c->x; c->x = wc.x = x;
- c->oldy = c->y; c->y = wc.y = y;
- c->oldw = c->w; c->w = wc.width = w;
- c->oldh = c->h; c->h = wc.height = h;
- wc.border_width = c->bw;
- if (((nexttiled(c->mon->clients) == c && !nexttiled(c->next))
- || &monocle == c->mon->lt[c->mon->sellt]->arrange)
- && !c->isfullscreen && !c->isfloating) {
- c->w = wc.width += c->bw * 2;
- c->h = wc.height += c->bw * 2;
- wc.border_width = 0;
- }
- XConfigureWindow(dpy, c->win, CWX|CWY|CWWidth|CWHeight|CWBorderWidth, &wc);
- configure(c);
- XSync(dpy, False);
-}
-
-void
-resizemouse(const Arg *arg)
-{
- int ocx, ocy, nw, nh;
- Client *c;
- Monitor *m;
- XEvent ev;
- Time lasttime = 0;
-
- if (!(c = selmon->sel))
- return;
- if (c->isfullscreen) /* no support resizing fullscreen windows by mouse */
- return;
- restack(selmon);
- ocx = c->x;
- ocy = c->y;
- if (XGrabPointer(dpy, root, False, MOUSEMASK, GrabModeAsync, GrabModeAsync,
- None, cursor[CurResize]->cursor, CurrentTime) != GrabSuccess)
- return;
- XWarpPointer(dpy, None, c->win, 0, 0, 0, 0, c->w + c->bw - 1, c->h + c->bw - 1);
- do {
- XMaskEvent(dpy, MOUSEMASK|ExposureMask|SubstructureRedirectMask, &ev);
- switch(ev.type) {
- case ConfigureRequest:
- case Expose:
- case MapRequest:
- handler[ev.type](&ev);
- break;
- case MotionNotify:
- if ((ev.xmotion.time - lasttime) <= (1000 / 60))
- continue;
- lasttime = ev.xmotion.time;
-
- nw = MAX(ev.xmotion.x - ocx - 2 * c->bw + 1, 1);
- nh = MAX(ev.xmotion.y - ocy - 2 * c->bw + 1, 1);
- if (c->mon->wx + nw >= selmon->wx && c->mon->wx + nw <= selmon->wx + selmon->ww
- && c->mon->wy + nh >= selmon->wy && c->mon->wy + nh <= selmon->wy + selmon->wh)
- {
- if (!c->isfloating && selmon->lt[selmon->sellt]->arrange
- && (abs(nw - c->w) > snap || abs(nh - c->h) > snap))
- togglefloating(NULL);
- }
- if (!selmon->lt[selmon->sellt]->arrange || c->isfloating)
- resize(c, c->x, c->y, nw, nh, 1);
- break;
- }
- } while (ev.type != ButtonRelease);
- XWarpPointer(dpy, None, c->win, 0, 0, 0, 0, c->w + c->bw - 1, c->h + c->bw - 1);
- XUngrabPointer(dpy, CurrentTime);
- while (XCheckMaskEvent(dpy, EnterWindowMask, &ev));
- if ((m = recttomon(c->x, c->y, c->w, c->h)) != selmon) {
- sendmon(c, m);
- selmon = m;
- focus(NULL);
- }
-}
-
-void
-restack(Monitor *m)
-{
- Client *c;
- XEvent ev;
- XWindowChanges wc;
-
- drawbar(m);
- if (!m->sel)
- return;
- if (m->sel->isfloating || !m->lt[m->sellt]->arrange)
- XRaiseWindow(dpy, m->sel->win);
- if (m->lt[m->sellt]->arrange) {
- wc.stack_mode = Below;
- wc.sibling = m->barwin;
- for (c = m->stack; c; c = c->snext)
- if (!c->isfloating && ISVISIBLE(c)) {
- XConfigureWindow(dpy, c->win, CWSibling|CWStackMode, &wc);
- wc.sibling = c->win;
- }
- }
- XSync(dpy, False);
- while (XCheckMaskEvent(dpy, EnterWindowMask, &ev));
-}
-
-void
-rotatestack(const Arg *arg)
-{
- Client *c = NULL, *f;
-
- if (!selmon->sel)
- return;
- f = selmon->sel;
- if (arg->i > 0) {
- for (c = nexttiled(selmon->clients); c && nexttiled(c->next); c = nexttiled(c->next));
- if (c){
- detach(c);
- attach(c);
- detachstack(c);
- attachstack(c);
- }
- } else {
- if ((c = nexttiled(selmon->clients))){
- detach(c);
- enqueue(c);
- detachstack(c);
- enqueuestack(c);
- }
- }
- if (c){
- arrange(selmon);
- //unfocus(f, 1);
- focus(f);
- restack(selmon);
- }
-}
-
-void
-run(void)
-{
- XEvent ev;
- /* main event loop */
- XSync(dpy, False);
- while (running && !XNextEvent(dpy, &ev))
- if (handler[ev.type])
- handler[ev.type](&ev); /* call handler */
-}
-
-void
-scan(void)
-{
- unsigned int i, num;
- Window d1, d2, *wins = NULL;
- XWindowAttributes wa;
-
- if (XQueryTree(dpy, root, &d1, &d2, &wins, &num)) {
- for (i = 0; i < num; i++) {
- if (!XGetWindowAttributes(dpy, wins[i], &wa)
- || wa.override_redirect || XGetTransientForHint(dpy, wins[i], &d1))
- continue;
- if (wa.map_state == IsViewable || getstate(wins[i]) == IconicState)
- manage(wins[i], &wa);
- }
- for (i = 0; i < num; i++) { /* now the transients */
- if (!XGetWindowAttributes(dpy, wins[i], &wa))
- continue;
- if (XGetTransientForHint(dpy, wins[i], &d1)
- && (wa.map_state == IsViewable || getstate(wins[i]) == IconicState))
- manage(wins[i], &wa);
- }
- if (wins)
- XFree(wins);
- }
-}
-
-void
-sendmon(Client *c, Monitor *m)
-{
- if (c->mon == m)
- return;
- unfocus(c, 1);
- detach(c);
- detachstack(c);
- c->mon = m;
- c->tags = m->tagset[m->seltags]; /* assign tags of target monitor */
- attach(c);
- attachstack(c);
- focus(NULL);
- arrange(NULL);
-}
-
-void
-setclientstate(Client *c, long state)
-{
- long data[] = { state, None };
-
- XChangeProperty(dpy, c->win, wmatom[WMState], wmatom[WMState], 32,
- PropModeReplace, (unsigned char *)data, 2);
-}
-
-int
-sendevent(Client *c, Atom proto)
-{
- int n;
- Atom *protocols;
- int exists = 0;
- XEvent ev;
-
- if (XGetWMProtocols(dpy, c->win, &protocols, &n)) {
- while (!exists && n--)
- exists = protocols[n] == proto;
- XFree(protocols);
- }
- if (exists) {
- ev.type = ClientMessage;
- ev.xclient.window = c->win;
- ev.xclient.message_type = wmatom[WMProtocols];
- ev.xclient.format = 32;
- ev.xclient.data.l[0] = proto;
- ev.xclient.data.l[1] = CurrentTime;
- XSendEvent(dpy, c->win, False, NoEventMask, &ev);
- }
- return exists;
-}
-
-void
-setfocus(Client *c)
-{
- if (!c->neverfocus) {
- XSetInputFocus(dpy, c->win, RevertToPointerRoot, CurrentTime);
- XChangeProperty(dpy, root, netatom[NetActiveWindow],
- XA_WINDOW, 32, PropModeReplace,
- (unsigned char *) &(c->win), 1);
- }
- sendevent(c, wmatom[WMTakeFocus]);
-}
-
-void
-setfullscreen(Client *c, int fullscreen)
-{
- if (fullscreen && !c->isfullscreen) {
- XChangeProperty(dpy, c->win, netatom[NetWMState], XA_ATOM, 32,
- PropModeReplace, (unsigned char*)&netatom[NetWMFullscreen], 1);
- c->isfullscreen = 1;
- c->oldstate = c->isfloating;
- c->oldbw = c->bw;
- c->bw = 0;
- c->isfloating = 1;
- resizeclient(c, c->mon->mx, c->mon->my, c->mon->mw, c->mon->mh);
- XRaiseWindow(dpy, c->win);
- } else if (!fullscreen && c->isfullscreen){
- XChangeProperty(dpy, c->win, netatom[NetWMState], XA_ATOM, 32,
- PropModeReplace, (unsigned char*)0, 0);
- c->isfullscreen = 0;
- c->isfloating = c->oldstate;
- c->bw = c->oldbw;
- c->x = c->oldx;
- c->y = c->oldy;
- c->w = c->oldw;
- c->h = c->oldh;
- resizeclient(c, c->x, c->y, c->w, c->h);
- arrange(c->mon);
- }
-}
-
-void
-setlayout(const Arg *arg)
-{
- if (!arg || !arg->v || arg->v != selmon->lt[selmon->sellt])
- selmon->sellt ^= 1;
- if (arg && arg->v)
- selmon->lt[selmon->sellt] = (Layout *)arg->v;
- strncpy(selmon->ltsymbol, selmon->lt[selmon->sellt]->symbol, sizeof selmon->ltsymbol);
- if (selmon->sel)
- arrange(selmon);
- else
- drawbar(selmon);
-}
-
-/* arg > 1.0 will set mfact absolutely */
-void
-setmfact(const Arg *arg)
-{
- float f;
-
- if (!arg || !selmon->lt[selmon->sellt]->arrange)
- return;
- f = arg->f < 1.0 ? arg->f + selmon->mfact : arg->f - 1.0;
- if (f < 0.1 || f > 0.9)
- return;
- selmon->mfact = f;
- arrange(selmon);
-}
-
-void
-setup(void)
-{
- int i;
- XSetWindowAttributes wa;
- Atom utf8string;
-
- /* clean up any zombies immediately */
- sigchld(0);
-
- /* init screen */
- screen = DefaultScreen(dpy);
- sw = DisplayWidth(dpy, screen);
- sh = DisplayHeight(dpy, screen);
- root = RootWindow(dpy, screen);
- drw = drw_create(dpy, screen, root, sw, sh);
- if (!drw_fontset_create(drw, fonts, LENGTH(fonts)))
- die("no fonts could be loaded.");
- lrpad = drw->fonts->h;
- bh = drw->fonts->h + 2;
- updategeom();
- /* init atoms */
- utf8string = XInternAtom(dpy, "UTF8_STRING", False);
- wmatom[WMProtocols] = XInternAtom(dpy, "WM_PROTOCOLS", False);
- wmatom[WMDelete] = XInternAtom(dpy, "WM_DELETE_WINDOW", False);
- wmatom[WMState] = XInternAtom(dpy, "WM_STATE", False);
- wmatom[WMTakeFocus] = XInternAtom(dpy, "WM_TAKE_FOCUS", False);
- netatom[NetActiveWindow] = XInternAtom(dpy, "_NET_ACTIVE_WINDOW", False);
- netatom[NetSupported] = XInternAtom(dpy, "_NET_SUPPORTED", False);
- netatom[NetWMName] = XInternAtom(dpy, "_NET_WM_NAME", False);
- netatom[NetWMState] = XInternAtom(dpy, "_NET_WM_STATE", False);
- netatom[NetWMCheck] = XInternAtom(dpy, "_NET_SUPPORTING_WM_CHECK", False);
- netatom[NetWMFullscreen] = XInternAtom(dpy, "_NET_WM_STATE_FULLSCREEN", False);
- netatom[NetWMWindowType] = XInternAtom(dpy, "_NET_WM_WINDOW_TYPE", False);
- netatom[NetWMWindowTypeDialog] = XInternAtom(dpy, "_NET_WM_WINDOW_TYPE_DIALOG", False);
- netatom[NetClientList] = XInternAtom(dpy, "_NET_CLIENT_LIST", False);
- /* init cursors */
- cursor[CurNormal] = drw_cur_create(drw, XC_left_ptr);
- cursor[CurResize] = drw_cur_create(drw, XC_sizing);
- cursor[CurMove] = drw_cur_create(drw, XC_fleur);
- /* init appearance */
- scheme = ecalloc(LENGTH(colors), sizeof(Clr *));
- for (i = 0; i < LENGTH(colors); i++)
- scheme[i] = drw_scm_create(drw, colors[i], 3);
- /* init bars */
- updatebars();
- updatestatus();
- /* supporting window for NetWMCheck */
- wmcheckwin = XCreateSimpleWindow(dpy, root, 0, 0, 1, 1, 0, 0, 0);
- XChangeProperty(dpy, wmcheckwin, netatom[NetWMCheck], XA_WINDOW, 32,
- PropModeReplace, (unsigned char *) &wmcheckwin, 1);
- XChangeProperty(dpy, wmcheckwin, netatom[NetWMName], utf8string, 8,
- PropModeReplace, (unsigned char *) "dwm", 3);
- XChangeProperty(dpy, root, netatom[NetWMCheck], XA_WINDOW, 32,
- PropModeReplace, (unsigned char *) &wmcheckwin, 1);
- /* EWMH support per view */
- XChangeProperty(dpy, root, netatom[NetSupported], XA_ATOM, 32,
- PropModeReplace, (unsigned char *) netatom, NetLast);
- XDeleteProperty(dpy, root, netatom[NetClientList]);
- /* select events */
- wa.cursor = cursor[CurNormal]->cursor;
- wa.event_mask = SubstructureRedirectMask|SubstructureNotifyMask
- |ButtonPressMask|PointerMotionMask|EnterWindowMask
- |LeaveWindowMask|StructureNotifyMask|PropertyChangeMask;
- XChangeWindowAttributes(dpy, root, CWEventMask|CWCursor, &wa);
- XSelectInput(dpy, root, wa.event_mask);
- grabkeys();
- focus(NULL);
-}
-
-
-void
-seturgent(Client *c, int urg)
-{
- XWMHints *wmh;
-
- c->isurgent = urg;
- if (!(wmh = XGetWMHints(dpy, c->win)))
- return;
- wmh->flags = urg ? (wmh->flags | XUrgencyHint) : (wmh->flags & ~XUrgencyHint);
- XSetWMHints(dpy, c->win, wmh);
- XFree(wmh);
-}
-
-void
-showhide(Client *c)
-{
- if (!c)
- return;
- if (ISVISIBLE(c)) {
- /* show clients top down */
- XMoveWindow(dpy, c->win, c->x, c->y);
- if ((!c->mon->lt[c->mon->sellt]->arrange || c->isfloating) && !c->isfullscreen)
- resize(c, c->x, c->y, c->w, c->h, 0);
- showhide(c->snext);
- } else {
- /* hide clients bottom up */
- showhide(c->snext);
- XMoveWindow(dpy, c->win, WIDTH(c) * -2, c->y);
- }
-}
-
-void
-sigchld(int unused)
-{
- if (signal(SIGCHLD, sigchld) == SIG_ERR)
- die("can't install SIGCHLD handler:");
- while (0 < waitpid(-1, NULL, WNOHANG));
-}
-
-void
-spawn(const Arg *arg)
-{
- if (arg->v == dmenucmd)
- dmenumon[0] = '0' + selmon->num;
- selmon->tagset[selmon->seltags] &= ~scratchtag;
- if (fork() == 0) {
- if (dpy)
- close(ConnectionNumber(dpy));
- setsid();
- execvp(((char **)arg->v)[0], (char **)arg->v);
- fprintf(stderr, "dwm: execvp %s", ((char **)arg->v)[0]);
- perror(" failed");
- exit(EXIT_SUCCESS);
- }
-}
-
-void
-tag(const Arg *arg)
-{
- if (selmon->sel && arg->ui & TAGMASK) {
- selmon->sel->tags = arg->ui & TAGMASK;
- focus(NULL);
- arrange(selmon);
- }
-}
-
-void
-tagmon(const Arg *arg)
-{
- if (!selmon->sel || !mons->next)
- return;
- sendmon(selmon->sel, dirtomon(arg->i));
-}
-
-void
-tile(Monitor *m)
-{
- unsigned int i, n, h, mw, my, ty;
- Client *c;
-
- for (n = 0, c = nexttiled(m->clients); c; c = nexttiled(c->next), n++);
- if (n == 0)
- return;
-
- if (n > m->nmaster)
- mw = m->nmaster ? m->ww * m->mfact : 0;
- else
- mw = m->ww;
- for (i = my = ty = 0, c = nexttiled(m->clients); c; c = nexttiled(c->next), i++)
- if (i < m->nmaster) {
- h = (m->wh - my) / (MIN(n, m->nmaster) - i);
- if (n == 1)
- resize(c, m->wx - c->bw, m->wy, m->ww, m->wh, False);
- else
- resize(c, m->wx - c->bw, m->wy + my, mw - c->bw, h - c->bw, False);
- my += HEIGHT(c) - c->bw;
- } else {
- h = (m->wh - ty) / (n - i);
- resize(c, m->wx + mw - c->bw, m->wy + ty, m->ww - mw, h - c->bw, False);
- ty += HEIGHT(c) - c->bw;
- }
-}
-
-void
-togglebar(const Arg *arg)
-{
- selmon->showbar = !selmon->showbar;
- updatebarpos(selmon);
- XMoveResizeWindow(dpy, selmon->barwin, selmon->wx, selmon->by, selmon->ww, bh);
- arrange(selmon);
-}
-
-void
-togglefloating(const Arg *arg)
-{
- if (!selmon->sel)
- return;
- if (selmon->sel->isfullscreen) /* no support for fullscreen windows */
- return;
- selmon->sel->isfloating = !selmon->sel->isfloating || selmon->sel->isfixed;
- if (selmon->sel->isfloating)
- resize(selmon->sel, selmon->sel->x, selmon->sel->y,
- selmon->sel->w, selmon->sel->h, 0);
- arrange(selmon);
-}
-
-void
-togglescratch(const Arg *arg)
-{
- Client *c;
- unsigned int found = 0;
-
- for (c = selmon->clients; c && !(found = c->tags & scratchtag); c = c->next);
- if (found) {
- unsigned int newtagset = selmon->tagset[selmon->seltags] ^ scratchtag;
- if (newtagset) {
- selmon->tagset[selmon->seltags] = newtagset;
- focus(NULL);
- arrange(selmon);
- }
- if (ISVISIBLE(c)) {
- focus(c);
- restack(selmon);
- }
- } else
- spawn(arg);
-}
-
-void
-toggletag(const Arg *arg)
-{
- unsigned int newtags;
-
- if (!selmon->sel)
- return;
- newtags = selmon->sel->tags ^ (arg->ui & TAGMASK);
- if (newtags) {
- selmon->sel->tags = newtags;
- focus(NULL);
- arrange(selmon);
- }
-}
-
-void
-toggleview(const Arg *arg)
-{
- unsigned int newtagset = selmon->tagset[selmon->seltags] ^ (arg->ui & TAGMASK);
-
- if (newtagset) {
- selmon->tagset[selmon->seltags] = newtagset;
- focus(NULL);
- arrange(selmon);
- }
-}
-
-void
-unfocus(Client *c, int setfocus)
-{
- if (!c)
- return;
- grabbuttons(c, 0);
- XSetWindowBorder(dpy, c->win, scheme[SchemeNorm][ColBorder].pixel);
- if (setfocus) {
- XSetInputFocus(dpy, root, RevertToPointerRoot, CurrentTime);
- XDeleteProperty(dpy, root, netatom[NetActiveWindow]);
- }
-}
-
-void
-unmanage(Client *c, int destroyed)
-{
- Monitor *m = c->mon;
- XWindowChanges wc;
-
- detach(c);
- detachstack(c);
- if (!destroyed) {
- wc.border_width = c->oldbw;
- XGrabServer(dpy); /* avoid race conditions */
- XSetErrorHandler(xerrordummy);
- XConfigureWindow(dpy, c->win, CWBorderWidth, &wc); /* restore border */
- XUngrabButton(dpy, AnyButton, AnyModifier, c->win);
- setclientstate(c, WithdrawnState);
- XSync(dpy, False);
- XSetErrorHandler(xerror);
- XUngrabServer(dpy);
- }
- free(c);
- focus(NULL);
- updateclientlist();
- arrange(m);
-}
-
-void
-unmapnotify(XEvent *e)
-{
- Client *c;
- XUnmapEvent *ev = &e->xunmap;
-
- if ((c = wintoclient(ev->window))) {
- if (ev->send_event)
- setclientstate(c, WithdrawnState);
- else
- unmanage(c, 0);
- }
-}
-
-void
-updatebars(void)
-{
- Monitor *m;
- XSetWindowAttributes wa = {
- .override_redirect = True,
- .background_pixmap = ParentRelative,
- .event_mask = ButtonPressMask|ExposureMask
- };
- XClassHint ch = {"dwm", "dwm"};
- for (m = mons; m; m = m->next) {
- if (m->barwin)
- continue;
- m->barwin = XCreateWindow(dpy, root, m->wx, m->by, m->ww, bh, 0, DefaultDepth(dpy, screen),
- CopyFromParent, DefaultVisual(dpy, screen),
- CWOverrideRedirect|CWBackPixmap|CWEventMask, &wa);
- XDefineCursor(dpy, m->barwin, cursor[CurNormal]->cursor);
- XMapRaised(dpy, m->barwin);
- XSetClassHint(dpy, m->barwin, &ch);
- }
-}
-
-void
-updatebarpos(Monitor *m)
-{
- m->wy = m->my;
- m->wh = m->mh;
- if (m->showbar) {
- m->wh -= bh;
- m->by = m->topbar ? m->wy : m->wy + m->wh;
- m->wy = m->topbar ? m->wy + bh : m->wy;
- } else
- m->by = -bh;
-}
-
-void
-updateclientlist()
-{
- Client *c;
- Monitor *m;
-
- XDeleteProperty(dpy, root, netatom[NetClientList]);
- for (m = mons; m; m = m->next)
- for (c = m->clients; c; c = c->next)
- XChangeProperty(dpy, root, netatom[NetClientList],
- XA_WINDOW, 32, PropModeAppend,
- (unsigned char *) &(c->win), 1);
-}
-
-int
-updategeom(void)
-{
- int dirty = 0;
-
-#ifdef XINERAMA
- if (XineramaIsActive(dpy)) {
- int i, j, n, nn;
- Client *c;
- Monitor *m;
- XineramaScreenInfo *info = XineramaQueryScreens(dpy, &nn);
- XineramaScreenInfo *unique = NULL;
-
- for (n = 0, m = mons; m; m = m->next, n++);
- /* only consider unique geometries as separate screens */
- unique = ecalloc(nn, sizeof(XineramaScreenInfo));
- for (i = 0, j = 0; i < nn; i++)
- if (isuniquegeom(unique, j, &info[i]))
- memcpy(&unique[j++], &info[i], sizeof(XineramaScreenInfo));
- XFree(info);
- nn = j;
- if (n <= nn) { /* new monitors available */
- for (i = 0; i < (nn - n); i++) {
- for (m = mons; m && m->next; m = m->next);
- if (m)
- m->next = createmon();
- else
- mons = createmon();
- }
- for (i = 0, m = mons; i < nn && m; m = m->next, i++)
- if (i >= n
- || unique[i].x_org != m->mx || unique[i].y_org != m->my
- || unique[i].width != m->mw || unique[i].height != m->mh)
- {
- dirty = 1;
- m->num = i;
- m->mx = m->wx = unique[i].x_org;
- m->my = m->wy = unique[i].y_org;
- m->mw = m->ww = unique[i].width;
- m->mh = m->wh = unique[i].height;
- updatebarpos(m);
- }
- } else { /* less monitors available nn < n */
- for (i = nn; i < n; i++) {
- for (m = mons; m && m->next; m = m->next);
- while ((c = m->clients)) {
- dirty = 1;
- m->clients = c->next;
- detachstack(c);
- c->mon = mons;
- attach(c);
- attachstack(c);
- }
- if (m == selmon)
- selmon = mons;
- cleanupmon(m);
- }
- }
- free(unique);
- } else
-#endif /* XINERAMA */
- { /* default monitor setup */
- if (!mons)
- mons = createmon();
- if (mons->mw != sw || mons->mh != sh) {
- dirty = 1;
- mons->mw = mons->ww = sw;
- mons->mh = mons->wh = sh;
- updatebarpos(mons);
- }
- }
- if (dirty) {
- selmon = mons;
- selmon = wintomon(root);
- }
- return dirty;
-}
-
-void
-updatenumlockmask(void)
-{
- unsigned int i, j;
- XModifierKeymap *modmap;
-
- numlockmask = 0;
- modmap = XGetModifierMapping(dpy);
- for (i = 0; i < 8; i++)
- for (j = 0; j < modmap->max_keypermod; j++)
- if (modmap->modifiermap[i * modmap->max_keypermod + j]
- == XKeysymToKeycode(dpy, XK_Num_Lock))
- numlockmask = (1 << i);
- XFreeModifiermap(modmap);
-}
-
-void
-updatesizehints(Client *c)
-{
- long msize;
- XSizeHints size;
-
- if (!XGetWMNormalHints(dpy, c->win, &size, &msize))
- /* size is uninitialized, ensure that size.flags aren't used */
- size.flags = PSize;
- if (size.flags & PBaseSize) {
- c->basew = size.base_width;
- c->baseh = size.base_height;
- } else if (size.flags & PMinSize) {
- c->basew = size.min_width;
- c->baseh = size.min_height;
- } else
- c->basew = c->baseh = 0;
- if (size.flags & PResizeInc) {
- c->incw = size.width_inc;
- c->inch = size.height_inc;
- } else
- c->incw = c->inch = 0;
- if (size.flags & PMaxSize) {
- c->maxw = size.max_width;
- c->maxh = size.max_height;
- } else
- c->maxw = c->maxh = 0;
- if (size.flags & PMinSize) {
- c->minw = size.min_width;
- c->minh = size.min_height;
- } else if (size.flags & PBaseSize) {
- c->minw = size.base_width;
- c->minh = size.base_height;
- } else
- c->minw = c->minh = 0;
- if (size.flags & PAspect) {
- c->mina = (float)size.min_aspect.y / size.min_aspect.x;
- c->maxa = (float)size.max_aspect.x / size.max_aspect.y;
- } else
- c->maxa = c->mina = 0.0;
- c->isfixed = (c->maxw && c->maxh && c->maxw == c->minw && c->maxh == c->minh);
-}
-
-void
-updatestatus(void)
-{
- if (!gettextprop(root, XA_WM_NAME, stext, sizeof(stext)))
- strcpy(stext, "dwm-"VERSION);
- drawbar(selmon);
-}
-
-void
-updatetitle(Client *c)
-{
- if (!gettextprop(c->win, netatom[NetWMName], c->name, sizeof c->name))
- gettextprop(c->win, XA_WM_NAME, c->name, sizeof c->name);
- if (c->name[0] == '\0') /* hack to mark broken clients */
- strcpy(c->name, broken);
-}
-
-void
-updatewindowtype(Client *c)
-{
- Atom state = getatomprop(c, netatom[NetWMState]);
- Atom wtype = getatomprop(c, netatom[NetWMWindowType]);
-
- if (state == netatom[NetWMFullscreen])
- setfullscreen(c, 1);
- if (wtype == netatom[NetWMWindowTypeDialog])
- c->isfloating = 1;
-}
-
-void
-updatewmhints(Client *c)
-{
- XWMHints *wmh;
-
- if ((wmh = XGetWMHints(dpy, c->win))) {
- if (c == selmon->sel && wmh->flags & XUrgencyHint) {
- wmh->flags &= ~XUrgencyHint;
- XSetWMHints(dpy, c->win, wmh);
- } else
- c->isurgent = (wmh->flags & XUrgencyHint) ? 1 : 0;
- if (wmh->flags & InputHint)
- c->neverfocus = !wmh->input;
- else
- c->neverfocus = 0;
- XFree(wmh);
- }
-}
-
-void
-view(const Arg *arg)
-{
- if ((arg->ui & TAGMASK) == selmon->tagset[selmon->seltags])
- return;
- selmon->seltags ^= 1; /* toggle sel tagset */
- if (arg->ui & TAGMASK)
- selmon->tagset[selmon->seltags] = arg->ui & TAGMASK;
- focus(NULL);
- arrange(selmon);
-}
-
-Client *
-wintoclient(Window w)
-{
- Client *c;
- Monitor *m;
-
- for (m = mons; m; m = m->next)
- for (c = m->clients; c; c = c->next)
- if (c->win == w)
- return c;
- return NULL;
-}
-
-Monitor *
-wintomon(Window w)
-{
- int x, y;
- Client *c;
- Monitor *m;
-
- if (w == root && getrootptr(&x, &y))
- return recttomon(x, y, 1, 1);
- for (m = mons; m; m = m->next)
- if (w == m->barwin)
- return m;
- if ((c = wintoclient(w)))
- return c->mon;
- return selmon;
-}
-
-/* There's no way to check accesses to destroyed windows, thus those cases are
- * ignored (especially on UnmapNotify's). Other types of errors call Xlibs
- * default error handler, which may call exit. */
-int
-xerror(Display *dpy, XErrorEvent *ee)
-{
- if (ee->error_code == BadWindow
- || (ee->request_code == X_SetInputFocus && ee->error_code == BadMatch)
- || (ee->request_code == X_PolyText8 && ee->error_code == BadDrawable)
- || (ee->request_code == X_PolyFillRectangle && ee->error_code == BadDrawable)
- || (ee->request_code == X_PolySegment && ee->error_code == BadDrawable)
- || (ee->request_code == X_ConfigureWindow && ee->error_code == BadMatch)
- || (ee->request_code == X_GrabButton && ee->error_code == BadAccess)
- || (ee->request_code == X_GrabKey && ee->error_code == BadAccess)
- || (ee->request_code == X_CopyArea && ee->error_code == BadDrawable))
- return 0;
- fprintf(stderr, "dwm: fatal error: request code=%d, error code=%d\n",
- ee->request_code, ee->error_code);
- return xerrorxlib(dpy, ee); /* may call exit */
-}
-
-int
-xerrordummy(Display *dpy, XErrorEvent *ee)
-{
- return 0;
-}
-
-/* Startup Error handler to check if another window manager
- * is already running. */
-int
-xerrorstart(Display *dpy, XErrorEvent *ee)
-{
- die("dwm: another window manager is already running");
- return -1;
-}
-
-void
-zoom(const Arg *arg)
-{
- Client *c = selmon->sel;
-
- if (!selmon->lt[selmon->sellt]->arrange
- || (selmon->sel && selmon->sel->isfloating))
- return;
- if (c == nexttiled(selmon->clients))
- if (!c || !(c = nexttiled(c->next)))
- return;
- pop(c);
-}
-
-int
-main(int argc, char *argv[])
-{
- if (argc == 2 && !strcmp("-v", argv[1]))
- die("dwm-"VERSION);
- else if (argc != 1)
- die("usage: dwm [-v]");
- if (!setlocale(LC_CTYPE, "") || !XSupportsLocale())
- fputs("warning: no locale support\n", stderr);
- if (!(dpy = XOpenDisplay(NULL)))
- die("dwm: cannot open display");
- checkotherwm();
- setup();
-#ifdef __OpenBSD__
- if (pledge("stdio rpath proc exec", NULL) == -1)
- die("pledge");
-#endif /* __OpenBSD__ */
- scan();
- run();
- cleanup();
- XCloseDisplay(dpy);
- return EXIT_SUCCESS;
-}
diff --git a/.repos/dwmold/patches/attachbottom.diff b/.repos/dwmold/patches/attachbottom.diff
deleted file mode 100644
index 71d092f..0000000
--- a/.repos/dwmold/patches/attachbottom.diff
+++ /dev/null
@@ -1,60 +0,0 @@
-Binary files dwm/drw.o and dwm.patched/drw.o differ
-Binary files dwm/dwm and dwm.patched/dwm differ
-diff -ruN dwm/dwm.c dwm.patched/dwm.c
---- dwm/dwm.c 2018-05-22 20:05:47.208417141 -0700
-+++ dwm.patched/dwm.c 2018-06-20 15:08:07.380496725 -0700
-@@ -147,6 +147,7 @@
- static void arrange(Monitor *m);
- static void arrangemon(Monitor *m);
- static void attach(Client *c);
-+static void attachbelow(Client *c);
- static void attachstack(Client *c);
- static void buttonpress(XEvent *e);
- static void checkotherwm(void);
-@@ -407,6 +408,17 @@
- }
-
- void
-+attachbelow(Client *c)
-+{
-+ Client *below = c->mon->clients;
-+ for (; below && below->next; below = below->next);
-+ if (below)
-+ below->next = c;
-+ else
-+ c->mon->clients = c;
-+}
-+
-+void
- attachstack(Client *c)
- {
- c->snext = c->mon->stack;
-@@ -1065,7 +1077,7 @@
- c->isfloating = c->oldstate = trans != None || c->isfixed;
- if (c->isfloating)
- XRaiseWindow(dpy, c->win);
-- attach(c);
-+ attachbelow(c);
- attachstack(c);
- XChangeProperty(dpy, root, netatom[NetClientList], XA_WINDOW, 32, PropModeAppend,
- (unsigned char *) &(c->win), 1);
-@@ -1420,7 +1432,7 @@
- detachstack(c);
- c->mon = m;
- c->tags = m->tagset[m->seltags]; /* assign tags of target monitor */
-- attach(c);
-+ attachbelow(c);
- attachstack(c);
- focus(NULL);
- arrange(NULL);
-@@ -1900,7 +1912,7 @@
- m->clients = c->next;
- detachstack(c);
- c->mon = mons;
-- attach(c);
-+ attachbelow(c);
- attachstack(c);
- }
- if (m == selmon)
-Binary files dwm/dwm.o and dwm.patched/dwm.o differ
-Binary files dwm/util.o and dwm.patched/util.o differ
diff --git a/.repos/dwmold/patches/horizgrid.diff b/.repos/dwmold/patches/horizgrid.diff
deleted file mode 100644
index 0920cee..0000000
--- a/.repos/dwmold/patches/horizgrid.diff
+++ /dev/null
@@ -1,70 +0,0 @@
-From 064e1d48631cd9b03f32b42d7be79677197ee42f Mon Sep 17 00:00:00 2001
-From: Marshall Mason <marshallmason3@gmail.com>
-Date: Mon, 9 Nov 2015 12:38:28 -0800
-Subject: [PATCH] Added horizgrid function
-
----
- config.def.h | 2 ++
- horizgrid.c | 32 ++++++++++++++++++++++++++++++++
- 2 files changed, 34 insertions(+)
- create mode 100644 horizgrid.c
-
-diff --git a/config.def.h b/config.def.h
-index eaae8f3..c2ad519 100644
---- a/config.def.h
-+++ b/config.def.h
-@@ -36,11 +36,13 @@ static const float mfact = 0.55; /* factor of master area size [0.05..0.95]
- static const int nmaster = 1; /* number of clients in master area */
- static const Bool resizehints = True; /* True means respect size hints in tiled resizals */
-
-+#include "horizgrid.c"
- static const Layout layouts[] = {
- /* symbol arrange function */
- { "[]=", tile }, /* first entry is default */
- { "><>", NULL }, /* no layout function means floating behavior */
- { "[M]", monocle },
-+ { "###", horizgrid },
- };
-
- /* key definitions */
-diff --git a/horizgrid.c b/horizgrid.c
-new file mode 100644
-index 0000000..51ce0f8
---- /dev/null
-+++ b/horizgrid.c
-@@ -0,0 +1,32 @@
-+void
-+horizgrid(Monitor *m) {
-+ Client *c;
-+ unsigned int n, i;
-+ int w = 0;
-+ int ntop, nbottom = 0;
-+
-+ /* Count windows */
-+ for(n = 0, c = nexttiled(m->clients); c; c = nexttiled(c->next), n++);
-+
-+ if(n == 0)
-+ return;
-+ else if(n == 1) { /* Just fill the whole screen */
-+ c = nexttiled(m->clients);
-+ resize(c, m->wx, m->wy, m->ww - (2*c->bw), m->wh - (2*c->bw), False);
-+ } else if(n == 2) { /* Split vertically */
-+ w = m->ww / 2;
-+ c = nexttiled(m->clients);
-+ resize(c, m->wx, m->wy, w - (2*c->bw), m->wh - (2*c->bw), False);
-+ c = nexttiled(c->next);
-+ resize(c, m->wx + w, m->wy, w - (2*c->bw), m->wh - (2*c->bw), False);
-+ } else {
-+ ntop = n / 2;
-+ nbottom = n - ntop;
-+ for(i = 0, c = nexttiled(m->clients); c; c = nexttiled(c->next), i++) {
-+ if(i < ntop)
-+ resize(c, m->wx + i * m->ww / ntop, m->wy, m->ww / ntop - (2*c->bw), m->wh / 2 - (2*c->bw), False);
-+ else
-+ resize(c, m->wx + (i - ntop) * m->ww / nbottom, m->wy + m->wh / 2, m->ww / nbottom - (2*c->bw), m->wh / 2 - (2*c->bw), False);
-+ }
-+ }
-+}
---
-2.1.4
-
diff --git a/.repos/dwmold/patches/noborder.diff b/.repos/dwmold/patches/noborder.diff
deleted file mode 100644
index f381eb8..0000000
--- a/.repos/dwmold/patches/noborder.diff
+++ /dev/null
@@ -1,30 +0,0 @@
-From 9102fdb9c670218373bbe83c891c8e8138d6a6f4 Mon Sep 17 00:00:00 2001
-From: redacted <redacted@example.com>
-Date: Tue, 23 Apr 2019 00:39:27 +0100
-Subject: [PATCH] added noborder patch
-
----
- dwm.c | 7 +++++++
- 1 file changed, 7 insertions(+)
-
-diff --git a/dwm.c b/dwm.c
-index 4465af1..685eca1 100644
---- a/dwm.c
-+++ b/dwm.c
-@@ -1282,6 +1282,13 @@ resizeclient(Client *c, int x, int y, int w, int h)
- c->oldw = c->w; c->w = wc.width = w;
- c->oldh = c->h; c->h = wc.height = h;
- wc.border_width = c->bw;
-+ if (((nexttiled(c->mon->clients) == c && !nexttiled(c->next))
-+ || &monocle == c->mon->lt[c->mon->sellt]->arrange)
-+ && !c->isfullscreen && !c->isfloating) {
-+ c->w = wc.width += c->bw * 2;
-+ c->h = wc.height += c->bw * 2;
-+ wc.border_width = 0;
-+ }
- XConfigureWindow(dpy, c->win, CWX|CWY|CWWidth|CWHeight|CWBorderWidth, &wc);
- configure(c);
- XSync(dpy, False);
---
-2.21.0
-
diff --git a/.repos/dwmold/patches/rotate.diff b/.repos/dwmold/patches/rotate.diff
deleted file mode 100644
index ed74c6d..0000000
--- a/.repos/dwmold/patches/rotate.diff
+++ /dev/null
@@ -1,102 +0,0 @@
-diff --git a/config.def.h b/config.def.h
-index fd77a07..09737d7 100644
---- a/config.def.h
-+++ b/config.def.h
-@@ -64,6 +64,8 @@ static Key keys[] = {
- { MODKEY, XK_p, spawn, {.v = dmenucmd } },
- { MODKEY|ShiftMask, XK_Return, spawn, {.v = termcmd } },
- { MODKEY, XK_b, togglebar, {0} },
-+ { MODKEY|ShiftMask, XK_j, rotatestack, {.i = +1 } },
-+ { MODKEY|ShiftMask, XK_k, rotatestack, {.i = -1 } },
- { MODKEY, XK_j, focusstack, {.i = +1 } },
- { MODKEY, XK_k, focusstack, {.i = -1 } },
- { MODKEY, XK_i, incnmaster, {.i = +1 } },
-diff --git a/dwm.c b/dwm.c
-index 421bf27..1ec8b10 100644
---- a/dwm.c
-+++ b/dwm.c
-@@ -165,6 +165,8 @@ static void detachstack(Client *c);
- static Monitor *dirtomon(int dir);
- static void drawbar(Monitor *m);
- static void drawbars(void);
-+static void enqueue(Client *c);
-+static void enqueuestack(Client *c);
- static void enternotify(XEvent *e);
- static void expose(XEvent *e);
- static void focus(Client *c);
-@@ -194,6 +196,7 @@ static void resize(Client *c, int x, int y, int w, int h, int interact);
- static void resizeclient(Client *c, int x, int y, int w, int h);
- static void resizemouse(const Arg *arg);
- static void restack(Monitor *m);
-+static void rotatestack(const Arg *arg);
- static void run(void);
- static void scan(void);
- static int sendevent(Client *c, Atom proto);
-@@ -765,6 +768,28 @@ drawbars(void)
- }
-
- void
-+enqueue(Client *c)
-+{
-+ Client *l;
-+ for (l = c->mon->clients; l && l->next; l = l->next);
-+ if (l) {
-+ l->next = c;
-+ c->next = NULL;
-+ }
-+}
-+
-+void
-+enqueuestack(Client *c)
-+{
-+ Client *l;
-+ for (l = c->mon->stack; l && l->snext; l = l->snext);
-+ if (l) {
-+ l->snext = c;
-+ c->snext = NULL;
-+ }
-+}
-+
-+void
- enternotify(XEvent *e)
- {
- Client *c;
-@@ -1390,6 +1415,38 @@ restack(Monitor *m)
- }
-
- void
-+rotatestack(const Arg *arg)
-+{
-+ Client *c = NULL, *f;
-+
-+ if (!selmon->sel)
-+ return;
-+ f = selmon->sel;
-+ if (arg->i > 0) {
-+ for (c = nexttiled(selmon->clients); c && nexttiled(c->next); c = nexttiled(c->next));
-+ if (c){
-+ detach(c);
-+ attach(c);
-+ detachstack(c);
-+ attachstack(c);
-+ }
-+ } else {
-+ if ((c = nexttiled(selmon->clients))){
-+ detach(c);
-+ enqueue(c);
-+ detachstack(c);
-+ enqueuestack(c);
-+ }
-+ }
-+ if (c){
-+ arrange(selmon);
-+ //unfocus(f, 1);
-+ focus(f);
-+ restack(selmon);
-+ }
-+}
-+
-+void
- run(void)
- {
- XEvent ev;
diff --git a/.repos/dwmold/patches/scratchpad.diff b/.repos/dwmold/patches/scratchpad.diff
deleted file mode 100644
index 2062263..0000000
--- a/.repos/dwmold/patches/scratchpad.diff
+++ /dev/null
@@ -1,90 +0,0 @@
-diff -up a/config.def.h b/config.def.h
---- a/config.def.h 2019-06-06 21:23:27.006661784 +0200
-+++ b/config.def.h 2019-06-20 15:05:59.083102462 +0200
-@@ -58,11 +58,14 @@ static const Layout layouts[] = {
- static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */
- static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL };
- static const char *termcmd[] = { "st", NULL };
-+static const char scratchpadname[] = "scratchpad";
-+static const char *scratchpadcmd[] = { "st", "-t", scratchpadname, "-g", "120x34", NULL };
-
- static Key keys[] = {
- /* modifier key function argument */
- { MODKEY, XK_p, spawn, {.v = dmenucmd } },
- { MODKEY|ShiftMask, XK_Return, spawn, {.v = termcmd } },
-+ { MODKEY, XK_grave, togglescratch, {.v = scratchpadcmd } },
- { MODKEY, XK_b, togglebar, {0} },
- { MODKEY, XK_j, focusstack, {.i = +1 } },
- { MODKEY, XK_k, focusstack, {.i = -1 } },
-diff -up a/dwm.c b/dwm.c
---- a/dwm.c 2019-06-06 21:23:27.023328450 +0200
-+++ b/dwm.c 2019-06-20 15:07:01.089767947 +0200
-@@ -213,6 +213,7 @@ static void tagmon(const Arg *arg);
- static void tile(Monitor *);
- static void togglebar(const Arg *arg);
- static void togglefloating(const Arg *arg);
-+static void togglescratch(const Arg *arg);
- static void toggletag(const Arg *arg);
- static void toggleview(const Arg *arg);
- static void unfocus(Client *c, int setfocus);
-@@ -273,6 +274,8 @@ static Window root, wmcheckwin;
- /* configuration, allows nested code to access above variables */
- #include "config.h"
-
-+static unsigned int scratchtag = 1 << LENGTH(tags);
-+
- /* compile-time check if all tags fit into an unsigned int bit array. */
- struct NumTags { char limitexceeded[LENGTH(tags) > 31 ? -1 : 1]; };
-
-@@ -1052,6 +1055,14 @@ manage(Window w, XWindowAttributes *wa)
- && (c->x + (c->w / 2) < c->mon->wx + c->mon->ww)) ? bh : c->mon->my);
- c->bw = borderpx;
-
-+ selmon->tagset[selmon->seltags] &= ~scratchtag;
-+ if (!strcmp(c->name, scratchpadname)) {
-+ c->mon->tagset[c->mon->seltags] |= c->tags = scratchtag;
-+ c->isfloating = True;
-+ c->x = c->mon->wx + (c->mon->ww / 2 - WIDTH(c) / 2);
-+ c->y = c->mon->wy + (c->mon->wh / 2 - HEIGHT(c) / 2);
-+ }
-+
- wc.border_width = c->bw;
- XConfigureWindow(dpy, w, CWBorderWidth, &wc);
- XSetWindowBorder(dpy, w, scheme[SchemeNorm][ColBorder].pixel);
-@@ -1661,6 +1672,7 @@ spawn(const Arg *arg)
- {
- if (arg->v == dmenucmd)
- dmenumon[0] = '0' + selmon->num;
-+ selmon->tagset[selmon->seltags] &= ~scratchtag;
- if (fork() == 0) {
- if (dpy)
- close(ConnectionNumber(dpy));
-@@ -1748,6 +1760,28 @@ togglefloating(const Arg *arg)
- }
-
- void
-+togglescratch(const Arg *arg)
-+{
-+ Client *c;
-+ unsigned int found = 0;
-+
-+ for (c = selmon->clients; c && !(found = c->tags & scratchtag); c = c->next);
-+ if (found) {
-+ unsigned int newtagset = selmon->tagset[selmon->seltags] ^ scratchtag;
-+ if (newtagset) {
-+ selmon->tagset[selmon->seltags] = newtagset;
-+ focus(NULL);
-+ arrange(selmon);
-+ }
-+ if (ISVISIBLE(c)) {
-+ focus(c);
-+ restack(selmon);
-+ }
-+ } else
-+ spawn(arg);
-+}
-+
-+void
- toggletag(const Arg *arg)
- {
- unsigned int newtags;
diff --git a/.repos/dwmold/patches/singularborders.diff b/.repos/dwmold/patches/singularborders.diff
deleted file mode 100644
index eb94653..0000000
--- a/.repos/dwmold/patches/singularborders.diff
+++ /dev/null
@@ -1,53 +0,0 @@
---- dwm.c.orig 2013-03-23 15:13:21.709978427 +0100
-+++ dwm.c 2013-03-23 15:13:13.366645236 +0100
-@@ -842,6 +842,8 @@
-
- void
- focus(Client *c) {
-+ XWindowChanges wc;
-+
- if(!c || !ISVISIBLE(c))
- for(c = selmon->stack; c && !ISVISIBLE(c); c = c->snext);
- /* was if(selmon->sel) */
-@@ -856,6 +858,11 @@
- attachstack(c);
- grabbuttons(c, True);
- XSetWindowBorder(dpy, c->win, dc.sel[ColBorder]);
-+ if(!c->isfloating) {
-+ wc.sibling = selmon->barwin;
-+ wc.stack_mode = Below;
-+ XConfigureWindow(dpy, c->win, CWSibling | CWStackMode, &wc);
-+ }
- setfocus(c);
- }
- else
-@@ -1200,7 +1207,7 @@
- if(n > 0) /* override layout symbol */
- snprintf(m->ltsymbol, sizeof m->ltsymbol, "[%d]", n);
- for(c = nexttiled(m->clients); c; c = nexttiled(c->next))
-- resize(c, m->wx, m->wy, m->ww - 2 * c->bw, m->wh - 2 * c->bw, False);
-+ resize(c, m->wx - c->bw, m->wy, m->ww, m->wh, False);
- }
-
- void
-@@ -1717,13 +1724,16 @@
- for(i = my = ty = 0, c = nexttiled(m->clients); c; c = nexttiled(c->next), i++)
- if(i < m->nmaster) {
- h = (m->wh - my) / (MIN(n, m->nmaster) - i);
-- resize(c, m->wx, m->wy + my, mw - (2*c->bw), h - (2*c->bw), False);
-- my += HEIGHT(c);
-+ if(n == 1)
-+ resize(c, m->wx - c->bw, m->wy, m->ww, m->wh, False);
-+ else
-+ resize(c, m->wx - c->bw, m->wy + my, mw - c->bw, h - c->bw, False);
-+ my += HEIGHT(c) - c->bw;
- }
- else {
- h = (m->wh - ty) / (n - i);
-- resize(c, m->wx + mw, m->wy + ty, m->ww - mw - (2*c->bw), h - (2*c->bw), False);
-- ty += HEIGHT(c);
-+ resize(c, m->wx + mw - c->bw, m->wy + ty, m->ww - mw, h - c->bw, False);
-+ ty += HEIGHT(c) - c->bw;
- }
- }
-
diff --git a/.repos/dwmold/patches/swallow.diff b/.repos/dwmold/patches/swallow.diff
deleted file mode 100644
index 684735a..0000000
--- a/.repos/dwmold/patches/swallow.diff
+++ /dev/null
@@ -1,388 +0,0 @@
-diff --git a/config.def.h b/config.def.h
-index 7054c06..2bfd607 100644
---- a/config.def.h
-+++ b/config.def.h
-@@ -24,9 +24,10 @@ static const Rule rules[] = {
- * WM_CLASS(STRING) = instance, class
- * WM_NAME(STRING) = title
- */
-- /* class instance title tags mask isfloating monitor */
-- { "Gimp", NULL, NULL, 0, 1, -1 },
-- { "Firefox", NULL, NULL, 1 << 8, 0, -1 },
-+ /* class instance title tags mask isfloating isterminal noswallow monitor */
-+ { "Gimp", NULL, NULL, 0, 1, 0, 0, -1 },
-+ { "Firefox", NULL, NULL, 1 << 8, 0, 0, 0, -1 },
-+ { "st", NULL, NULL, 0, 0, 1, 1, -1 },
- };
-
- /* layout(s) */
-diff --git a/config.mk b/config.mk
-index 4eefb71..34ea872 100644
---- a/config.mk
-+++ b/config.mk
-@@ -22,7 +22,7 @@ FREETYPEINC = /usr/include/freetype2
-
- # includes and libs
- INCS = -I${X11INC} -I${FREETYPEINC}
--LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS}
-+LIBS = -L${X11LIB} -lX11 ${XINERAMALIBS} ${FREETYPELIBS} -lX11-xcb -lxcb -lxcb-res
-
- # flags
- CPPFLAGS = -D_BSD_SOURCE -D_POSIX_C_SOURCE=2 -DVERSION=\"${VERSION}\" ${XINERAMAFLAGS}
-diff --git a/dwm.c b/dwm.c
-index 0362114..1d38293 100644
---- a/dwm.c
-+++ b/dwm.c
-@@ -40,6 +40,8 @@
- #include <X11/extensions/Xinerama.h>
- #endif /* XINERAMA */
- #include <X11/Xft/Xft.h>
-+#include <X11/Xlib-xcb.h>
-+#include <xcb/res.h>
-
- #include "drw.h"
- #include "util.h"
-@@ -92,9 +94,11 @@ struct Client {
- int basew, baseh, incw, inch, maxw, maxh, minw, minh;
- int bw, oldbw;
- unsigned int tags;
-- int isfixed, isfloating, isurgent, neverfocus, oldstate, isfullscreen;
-+ int isfixed, isfloating, isurgent, neverfocus, oldstate, isfullscreen, isterminal, noswallow;
-+ pid_t pid;
- Client *next;
- Client *snext;
-+ Client *swallowing;
- Monitor *mon;
- Window win;
- };
-@@ -138,6 +142,8 @@ typedef struct {
- const char *title;
- unsigned int tags;
- int isfloating;
-+ int isterminal;
-+ int noswallow;
- int monitor;
- } Rule;
-
-@@ -170,12 +176,14 @@ static void focus(Client *c);
- static void focusin(XEvent *e);
- static void focusmon(const Arg *arg);
- static void focusstack(const Arg *arg);
-+static pid_t getparentprocess(pid_t p);
- static int getrootptr(int *x, int *y);
- static long getstate(Window w);
- static int gettextprop(Window w, Atom atom, char *text, unsigned int size);
- static void grabbuttons(Client *c, int focused);
- static void grabkeys(void);
- static void incnmaster(const Arg *arg);
-+static int isdescprocess(pid_t p, pid_t c);
- static void keypress(XEvent *e);
- static void killclient(const Arg *arg);
- static void manage(Window w, XWindowAttributes *wa);
-@@ -206,8 +214,10 @@ static void setup(void);
- static void showhide(Client *c);
- static void sigchld(int unused);
- static void spawn(const Arg *arg);
-+static Client *swallowingclient(Window w);
- static void tag(const Arg *arg);
- static void tagmon(const Arg *arg);
-+static Client *termforwin(const Client *c);
- static void tile(Monitor *);
- static void togglebar(const Arg *arg);
- static void togglefloating(const Arg *arg);
-@@ -227,6 +237,7 @@ static void updatewindowtype(Client *c);
- static void updatetitle(Client *c);
- static void updatewmhints(Client *c);
- static void view(const Arg *arg);
-+static pid_t winpid(Window w);
- static Client *wintoclient(Window w);
- static Monitor *wintomon(Window w);
- static int xerror(Display *dpy, XErrorEvent *ee);
-@@ -267,6 +278,8 @@ static Drw *drw;
- static Monitor *mons, *selmon;
- static Window root;
-
-+static xcb_connection_t *xcon;
-+
- /* configuration, allows nested code to access above variables */
- #include "config.h"
-
-@@ -296,6 +309,7 @@ applyrules(Client *c)
- && (!r->class || strstr(class, r->class))
- && (!r->instance || strstr(instance, r->instance)))
- {
-+ c->isterminal = r->isterminal;
- c->isfloating = r->isfloating;
- c->tags |= r->tags;
- for (m = mons; m && m->num != r->monitor; m = m->next);
-@@ -412,6 +426,48 @@ attachstack(Client *c)
- c->mon->stack = c;
- }
-
-+void
-+swallow(Client *p, Client *c)
-+{
-+ if (c->noswallow || c->isterminal)
-+ return;
-+
-+ detach(c);
-+ detachstack(c);
-+
-+ setclientstate(c, WithdrawnState);
-+ XUnmapWindow(dpy, p->win);
-+
-+ p->swallowing = c;
-+ c->mon = p->mon;
-+
-+ Window w = p->win;
-+ p->win = c->win;
-+ c->win = w;
-+ updatetitle(p);
-+ arrange(p->mon);
-+ XMoveResizeWindow(dpy, p->win, p->x, p->y, p->w, p->h);
-+ configure(p);
-+ updateclientlist();
-+}
-+
-+void
-+unswallow(Client *c)
-+{
-+ c->win = c->swallowing->win;
-+
-+ free(c->swallowing);
-+ c->swallowing = NULL;
-+
-+ updatetitle(c);
-+ arrange(c->mon);
-+ XMapWindow(dpy, c->win);
-+ XMoveResizeWindow(dpy, c->win, c->x, c->y, c->w, c->h);
-+ configure(c);
-+ setclientstate(c, NormalState);
-+ focus(c);
-+}
-+
- void
- buttonpress(XEvent *e)
- {
-@@ -475,7 +531,7 @@ cleanup(void)
- selmon->lt[selmon->sellt] = &foo;
- for (m = mons; m; m = m->next)
- while (m->stack)
-- unmanage(m->stack, 0);
-+ unmanage(m->stack, 0); // XXX - unmanage swallowing windows too
- XUngrabKey(dpy, AnyKey, AnyModifier, root);
- while (mons)
- cleanupmon(mons);
-@@ -661,6 +717,9 @@ destroynotify(XEvent *e)
-
- if ((c = wintoclient(ev->window)))
- unmanage(c, 1);
-+
-+ else if ((c = swallowingclient(ev->window)))
-+ unmanage(c->swallowing, 1);
- }
-
- void
-@@ -1032,12 +1091,13 @@ killclient(const Arg *arg)
- void
- manage(Window w, XWindowAttributes *wa)
- {
-- Client *c, *t = NULL;
-+ Client *c, *t, *term = NULL;
- Window trans = None;
- XWindowChanges wc;
-
- c = ecalloc(1, sizeof(Client));
- c->win = w;
-+ c->pid = winpid(w);
- updatetitle(c);
- if (XGetTransientForHint(dpy, w, &trans) && (t = wintoclient(trans))) {
- c->mon = t->mon;
-@@ -1045,7 +1105,9 @@ manage(Window w, XWindowAttributes *wa)
- } else {
- c->mon = selmon;
- applyrules(c);
-+ term = termforwin(c);
- }
-+
- /* geometry */
- c->x = c->oldx = wa->x;
- c->y = c->oldy = wa->y;
-@@ -1085,8 +1147,11 @@ manage(Window w, XWindowAttributes *wa)
- if (c->mon == selmon)
- unfocus(selmon->sel, 0);
- c->mon->sel = c;
-- arrange(c->mon);
-+ if (!term)
-+ arrange(c->mon);
- XMapWindow(dpy, c->win);
-+ if (term)
-+ swallow(term, c);
- focus(NULL);
- }
-
-@@ -1758,6 +1823,20 @@ unmanage(Client *c, int destroyed)
- Monitor *m = c->mon;
- XWindowChanges wc;
-
-+ if (c->swallowing) {
-+ unswallow(c);
-+ return;
-+ }
-+
-+ Client *s = swallowingclient(c->win);
-+ if (s) {
-+ free(s->swallowing);
-+ s->swallowing = NULL;
-+ arrange(m);
-+ focus(NULL);
-+ return;
-+ }
-+
- /* The server grab construct avoids race conditions. */
- detach(c);
- detachstack(c);
-@@ -1773,9 +1852,12 @@ unmanage(Client *c, int destroyed)
- XUngrabServer(dpy);
- }
- free(c);
-- focus(NULL);
-- updateclientlist();
-- arrange(m);
-+
-+ if (!s) {
-+ arrange(m);
-+ focus(NULL);
-+ updateclientlist();
-+ }
- }
-
- void
-@@ -2040,16 +2122,116 @@ view(const Arg *arg)
- arrange(selmon);
- }
-
-+pid_t
-+winpid(Window w)
-+{
-+ pid_t result = 0;
-+
-+ xcb_res_client_id_spec_t spec = {0};
-+ spec.client = w;
-+ spec.mask = XCB_RES_CLIENT_ID_MASK_LOCAL_CLIENT_PID;
-+
-+ xcb_generic_error_t *e = NULL;
-+ xcb_res_query_client_ids_cookie_t c = xcb_res_query_client_ids(xcon, 1, &spec);
-+ xcb_res_query_client_ids_reply_t *r = xcb_res_query_client_ids_reply(xcon, c, &e);
-+
-+ if (!r)
-+ return (pid_t)0;
-+
-+ xcb_res_client_id_value_iterator_t i = xcb_res_query_client_ids_ids_iterator(r);
-+ for (; i.rem; xcb_res_client_id_value_next(&i)) {
-+ spec = i.data->spec;
-+ if (spec.mask & XCB_RES_CLIENT_ID_MASK_LOCAL_CLIENT_PID) {
-+ uint32_t *t = xcb_res_client_id_value_value(i.data);
-+ result = *t;
-+ break;
-+ }
-+ }
-+
-+ free(r);
-+
-+ if (result == (pid_t)-1)
-+ result = 0;
-+ return result;
-+}
-+
-+pid_t
-+getparentprocess(pid_t p)
-+{
-+ unsigned int v = 0;
-+
-+#ifdef __linux__
-+ FILE *f;
-+ char buf[256];
-+ snprintf(buf, sizeof(buf) - 1, "/proc/%u/stat", (unsigned)p);
-+
-+ if (!(f = fopen(buf, "r")))
-+ return 0;
-+
-+ fscanf(f, "%*u %*s %*c %u", &v);
-+ fclose(f);
-+#endif /* __linux__ */
-+
-+ return (pid_t)v;
-+}
-+
-+int
-+isdescprocess(pid_t p, pid_t c)
-+{
-+ while (p != c && c != 0)
-+ c = getparentprocess(c);
-+
-+ return (int)c;
-+}
-+
-+Client *
-+termforwin(const Client *w)
-+{
-+ Client *c;
-+ Monitor *m;
-+
-+ if (!w->pid || w->isterminal)
-+ return NULL;
-+
-+ for (m = mons; m; m = m->next) {
-+ for (c = m->clients; c; c = c->next) {
-+ if (c->isterminal && !c->swallowing && c->pid && isdescprocess(c->pid, w->pid))
-+ return c;
-+ }
-+ }
-+
-+ return NULL;
-+}
-+
-+Client *
-+swallowingclient(Window w)
-+{
-+ Client *c;
-+ Monitor *m;
-+
-+ for (m = mons; m; m = m->next) {
-+ for (c = m->clients; c; c = c->next) {
-+ if (c->swallowing && c->swallowing->win == w)
-+ return c;
-+ }
-+ }
-+
-+ return NULL;
-+}
-+
- Client *
- wintoclient(Window w)
- {
- Client *c;
- Monitor *m;
-
-- for (m = mons; m; m = m->next)
-- for (c = m->clients; c; c = c->next)
-+ for (m = mons; m; m = m->next) {
-+ for (c = m->clients; c; c = c->next) {
- if (c->win == w)
- return c;
-+ }
-+ }
-+
- return NULL;
- }
-
-@@ -2131,6 +2313,8 @@ main(int argc, char *argv[])
- fputs("warning: no locale support\n", stderr);
- if (!(dpy = XOpenDisplay(NULL)))
- die("dwm: cannot open display\n");
-+ if (!(xcon = XGetXCBConnection(dpy)))
-+ die("dwm: cannot get xcb connection\n");
- checkotherwm();
- setup();
- scan();
diff --git a/.repos/dwmold/transient.c b/.repos/dwmold/transient.c
deleted file mode 100644
index 040adb5..0000000
--- a/.repos/dwmold/transient.c
+++ /dev/null
@@ -1,42 +0,0 @@
-/* cc transient.c -o transient -lX11 */
-
-#include <stdlib.h>
-#include <unistd.h>
-#include <X11/Xlib.h>
-#include <X11/Xutil.h>
-
-int main(void) {
- Display *d;
- Window r, f, t = None;
- XSizeHints h;
- XEvent e;
-
- d = XOpenDisplay(NULL);
- if (!d)
- exit(1);
- r = DefaultRootWindow(d);
-
- f = XCreateSimpleWindow(d, r, 100, 100, 400, 400, 0, 0, 0);
- h.min_width = h.max_width = h.min_height = h.max_height = 400;
- h.flags = PMinSize | PMaxSize;
- XSetWMNormalHints(d, f, &h);
- XStoreName(d, f, "floating");
- XMapWindow(d, f);
-
- XSelectInput(d, f, ExposureMask);
- while (1) {
- XNextEvent(d, &e);
-
- if (t == None) {
- sleep(5);
- t = XCreateSimpleWindow(d, r, 50, 50, 100, 100, 0, 0, 0);
- XSetTransientForHint(d, t, f);
- XStoreName(d, t, "transient");
- XMapWindow(d, t);
- XSelectInput(d, t, ExposureMask);
- }
- }
-
- XCloseDisplay(d);
- exit(0);
-}
diff --git a/.repos/dwmold/util.c b/.repos/dwmold/util.c
deleted file mode 100644
index fe044fc..0000000
--- a/.repos/dwmold/util.c
+++ /dev/null
@@ -1,35 +0,0 @@
-/* See LICENSE file for copyright and license details. */
-#include <stdarg.h>
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-
-#include "util.h"
-
-void *
-ecalloc(size_t nmemb, size_t size)
-{
- void *p;
-
- if (!(p = calloc(nmemb, size)))
- die("calloc:");
- return p;
-}
-
-void
-die(const char *fmt, ...) {
- va_list ap;
-
- va_start(ap, fmt);
- vfprintf(stderr, fmt, ap);
- va_end(ap);
-
- if (fmt[0] && fmt[strlen(fmt)-1] == ':') {
- fputc(' ', stderr);
- perror(NULL);
- } else {
- fputc('\n', stderr);
- }
-
- exit(1);
-}
diff --git a/.repos/dwmold/util.h b/.repos/dwmold/util.h
deleted file mode 100644
index f633b51..0000000
--- a/.repos/dwmold/util.h
+++ /dev/null
@@ -1,8 +0,0 @@
-/* See LICENSE file for copyright and license details. */
-
-#define MAX(A, B) ((A) > (B) ? (A) : (B))
-#define MIN(A, B) ((A) < (B) ? (A) : (B))
-#define BETWEEN(X, A, B) ((A) <= (X) && (X) <= (B))
-
-void die(const char *fmt, ...);
-void *ecalloc(size_t nmemb, size_t size);
diff --git a/.repos/surf/.gitignore b/.repos/surf/.gitignore
deleted file mode 100644
index 475d38f..0000000
--- a/.repos/surf/.gitignore
+++ /dev/null
@@ -1,5 +0,0 @@
-surf
-*.orig
-*.o
-*.rej
-*.so
diff --git a/.repos/surf/FAQ.md b/.repos/surf/FAQ.md
deleted file mode 100644
index 48e6097..0000000
--- a/.repos/surf/FAQ.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# Frequently Asked Questions
-
-## Surf is starting up slowly. What might be causing this?
-
-The first suspect for such behaviour is the plugin handling. Run surf on
-the commandline and see if there are errors because of “nspluginwrapper”
-or failed RPCs to them. If that is true, go to ~/.mozilla/plugins and
-try removing stale links to plugins not on your system anymore. This
-will stop surf from trying to load them.
-
diff --git a/.repos/surf/LICENSE b/.repos/surf/LICENSE
deleted file mode 100644
index 2cdab7c..0000000
--- a/.repos/surf/LICENSE
+++ /dev/null
@@ -1,48 +0,0 @@
-MIT/X Consortium License
-
-© 2009-2010 Enno Boland <tox@s01.de>
-© 2009 Thomas Menari <spaceinvader@chaotika.org>
-© 2009 Simon Rozet <simon@rozet.name>
-© 2009 Andrew Antle <andrew.antle@gmail.com>
-© 2010-2011 pancake <nopcode.org>
-© 2011-2013 Anselm R Garbe <anselm@garbe.us>
-© 2011-2012 Troels Henriksen <athas@sigkill.dk>
-© 2011 Connor Lane Smith <cls@lubutu.com>
-© 2012-2017 Christoph Lohmann <20h@r-36.net>
-© 2013 Shayan Pooya <shayan@liveve.org>
-© 2013 Jens Nyberg <jens.nyberg@gmail.com>
-© 2013 Carlos J. Torres <vlaadbrain@gmail.com>
-© 2013 Alexander Sedov <alex0player@gmail.com>
-© 2013 Nick White <git@njw.me.uk>
-© 2013 David Dufberg <david@dufberg.se>
-© 2014-2017 Quentin Rameau <quinq@fifth.space>
-© 2014-2016 Markus Teich <markus.teich@stusta.mhn.de>
-© 2015 Jakukyo Friel <weakish@gmail.com>
-© 2015 Ben Woolley <tautolog@gmail.com>
-© 2015 Greg Reagle <greg.reagle@umbc.edu>
-© 2015 GhostAV <ghostav@riseup.net>
-© 2015 Ivan Tham <pickfire@riseup.net>
-© 2015 Alexander Huemer <alexander.huemer@xx.vu>
-© 2015 Michael Stevens <mstevens@etla.org>
-© 2015 Felix Janda <felix.janda@posteo.de>
-© 2016 Charles Lehner <cel@celehner.com>
-© 2016 Dmitry Bogatov <KAction@gnu.org>
-
-Permission is hereby granted, free of charge, to any person obtaining a
-copy of this software and associated documentation files (the "Software"),
-to deal in the Software without restriction, including without limitation
-the rights to use, copy, modify, merge, publish, distribute, sublicense,
-and/or sell copies of the Software, and to permit persons to whom the
-Software is furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
-THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
-FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
-DEALINGS IN THE SOFTWARE.
-
diff --git a/.repos/surf/Makefile b/.repos/surf/Makefile
deleted file mode 100644
index 636f008..0000000
--- a/.repos/surf/Makefile
+++ /dev/null
@@ -1,76 +0,0 @@
-# surf - simple browser
-# See LICENSE file for copyright and license details.
-.POSIX:
-
-include config.mk
-
-SRC = surf.c
-CSRC = common.c
-WEBEXTSRC = libsurf-webext.c
-OBJ = $(SRC:.c=.o)
-COBJ = $(CSRC:.c=.o)
-WEBEXTOBJ = $(WEBEXTSRC:.c=.o)
-
-all: options libsurf-webext.so surf
-
-options:
- @echo surf build options:
- @echo "CC = $(CC)"
- @echo "CFLAGS = $(SURFCFLAGS) $(CFLAGS)"
- @echo "WEBEXTCFLAGS = $(WEBEXTCFLAGS) $(CFLAGS)"
- @echo "LDFLAGS = $(LDFLAGS)"
-
-.c.o:
- $(CC) $(SURFCFLAGS) $(CFLAGS) -c $<
-
-$(OBJ): config.h common.h config.mk
-$(COBJ): config.h common.h config.mk
-$(WEBEXTOBJ): config.h common.h config.mk
-
-$(WEBEXTOBJ): $(WEBEXTSRC)
- $(CC) $(WEBEXTCFLAGS) $(CFLAGS) -c $(WEBEXTSRC)
-
-libsurf-webext.so: $(WEBEXTOBJ) $(COBJ)
- $(CC) -shared -Wl,-soname,$@ $(LDFLAGS) -o $@ \
- $(WEBEXTOBJ) $(COBJ) $(WEBEXTLIBS)
-
-surf: $(OBJ) $(COBJ)
- $(CC) $(SURFLDFLAGS) $(LDFLAGS) -o $@ $(OBJ) $(COBJ) $(LIBS)
-
-clean:
- rm -f surf $(OBJ) $(COBJ)
- rm -f libsurf-webext.so $(WEBEXTOBJ)
- rm -f *.rej
- rm -f *.orig
-
-distclean: clean
- rm -f config.h surf-$(VERSION).tar.gz
-
-dist: distclean
- mkdir -p surf-$(VERSION)
- cp -R LICENSE Makefile config.mk config.def.h README \
- surf-open.sh arg.h TODO.md surf.png \
- surf.1 $(SRC) $(WEBEXTSRC) surf-$(VERSION)
- tar -cf surf-$(VERSION).tar surf-$(VERSION)
- gzip surf-$(VERSION).tar
- rm -rf surf-$(VERSION)
-
-install: all
- mkdir -p $(DESTDIR)$(PREFIX)/bin
- cp -f surf $(DESTDIR)$(PREFIX)/bin
- chmod 755 $(DESTDIR)$(PREFIX)/bin/surf
- mkdir -p $(DESTDIR)$(LIBDIR)
- cp -f libsurf-webext.so $(DESTDIR)$(LIBDIR)
- chmod 644 $(DESTDIR)$(LIBDIR)/libsurf-webext.so
- mkdir -p $(DESTDIR)$(MANPREFIX)/man1
- sed "s/VERSION/$(VERSION)/g" < surf.1 > $(DESTDIR)$(MANPREFIX)/man1/surf.1
- chmod 644 $(DESTDIR)$(MANPREFIX)/man1/surf.1
-
-uninstall:
- rm -f $(DESTDIR)$(PREFIX)/bin/surf
- rm -f $(DESTDIR)$(MANPREFIX)/man1/surf.1
- rm -f $(DESTDIR)$(LIBDIR)/libsurf-webext.so
- - rmdir $(DESTDIR)$(LIBDIR)
-
-.SUFFIXES: .so .o .c
-.PHONY: all options clean-dist clean dist install uninstall
diff --git a/.repos/surf/README b/.repos/surf/README
deleted file mode 100644
index da4577f..0000000
--- a/.repos/surf/README
+++ /dev/null
@@ -1,40 +0,0 @@
-surf - simple webkit-based browser
-==================================
-surf is a simple Web browser based on WebKit/GTK+.
-
-Requirements
-------------
-In order to build surf you need GTK+ and Webkit/GTK+ header files.
-
-In order to use the functionality of the url-bar, also install dmenu[0].
-
-Installation
-------------
-Edit config.mk to match your local setup (surf is installed into
-the /usr/local namespace by default).
-
-Afterwards enter the following command to build and install surf (if
-necessary as root):
-
- make clean install
-
-Running surf
-------------
-run
- surf [URI]
-
-See the manpage for further options.
-
-Running surf in tabbed
-----------------------
-For running surf in tabbed[1] there is a script included in the distribution,
-which is run like this:
-
- surf-open.sh [URI]
-
-Further invocations of the script will run surf with the specified URI in this
-instance of tabbed.
-
-[0] http://tools.suckless.org/dmenu
-[1] http://tools.suckless.org/tabbed
-
diff --git a/.repos/surf/TODO.md b/.repos/surf/TODO.md
deleted file mode 100644
index da5f44d..0000000
--- a/.repos/surf/TODO.md
+++ /dev/null
@@ -1,10 +0,0 @@
-# TODO
-
-* suckless adblocking
-* replace twitch() with proper gtk calls to make scrollbars reappear
-* replace webkit with something sane
-* add video player options
- * play in plugin
- * play in video player
- * call command with URI (quvi + cclive)
-
diff --git a/.repos/surf/arg.h b/.repos/surf/arg.h
deleted file mode 100644
index ba3fb3f..0000000
--- a/.repos/surf/arg.h
+++ /dev/null
@@ -1,48 +0,0 @@
-/*
- * Copy me if you can.
- * by 20h
- */
-
-#ifndef ARG_H__
-#define ARG_H__
-
-extern char *argv0;
-
-/* use main(int argc, char *argv[]) */
-#define ARGBEGIN for (argv0 = *argv, argv++, argc--;\
- argv[0] && argv[0][0] == '-'\
- && argv[0][1];\
- argc--, argv++) {\
- char argc_;\
- char **argv_;\
- int brk_;\
- if (argv[0][1] == '-' && argv[0][2] == '\0') {\
- argv++;\
- argc--;\
- break;\
- }\
- for (brk_ = 0, argv[0]++, argv_ = argv;\
- argv[0][0] && !brk_;\
- argv[0]++) {\
- if (argv_ != argv)\
- break;\
- argc_ = argv[0][0];\
- switch (argc_)
-#define ARGEND }\
- }
-
-#define ARGC() argc_
-
-#define EARGF(x) ((argv[0][1] == '\0' && argv[1] == NULL)?\
- ((x), abort(), (char *)0) :\
- (brk_ = 1, (argv[0][1] != '\0')?\
- (&argv[0][1]) :\
- (argc--, argv++, argv[0])))
-
-#define ARGF() ((argv[0][1] == '\0' && argv[1] == NULL)?\
- (char *)0 :\
- (brk_ = 1, (argv[0][1] != '\0')?\
- (&argv[0][1]) :\
- (argc--, argv++, argv[0])))
-
-#endif
diff --git a/.repos/surf/common.c b/.repos/surf/common.c
deleted file mode 100644
index 42662ed..0000000
--- a/.repos/surf/common.c
+++ /dev/null
@@ -1,15 +0,0 @@
-#include <stdarg.h>
-#include <stdio.h>
-#include <stdlib.h>
-
-void
-die(const char *errstr, ...)
-{
- va_list ap;
-
- va_start(ap, errstr);
- vfprintf(stderr, errstr, ap);
- va_end(ap);
- exit(1);
-}
-
diff --git a/.repos/surf/common.h b/.repos/surf/common.h
deleted file mode 100644
index 2778029..0000000
--- a/.repos/surf/common.h
+++ /dev/null
@@ -1,3 +0,0 @@
-#define MSGBUFSZ 8
-
-void die(char *, ...);
diff --git a/.repos/surf/config.h b/.repos/surf/config.h
deleted file mode 100644
index 3569048..0000000
--- a/.repos/surf/config.h
+++ /dev/null
@@ -1,216 +0,0 @@
-/* modifier 0 means no modifier */
-static int surfuseragent = 1; /* Append Surf version to default WebKit user agent */
-static char *fulluseragent = ""; /* Or override the whole user agent string */
-static char *scriptfile = "~/.config/surf/script.js";
-static char *styledir = "~/.config/surf/styles/";
-static char *certdir = "~/.config/surf/certificates/";
-static char *cachedir = "~/.config/surf/cache/";
-static char *cookiefile = "~/.config/surf/cookies.txt";
-
-static char *searchengine = "https://duckduckgo.com/?q=";
-
-static SearchEngine searchengines[] = {
- { "d", "https://duckduckgo.com/?q=%s&atb=v1-1&t=h_&iar=images" },
- { "w", "https://www.wikipedia.org/search-redirect.php?family=wikipedia&language=en&search=%s&language=en&go=Go" },
- { "g", "https://www.google.com/search?q=%s" },
- { "yt", "https://www.youtube.com/results?search_query=%s" },
-};
-
-/* Webkit default features */
-/* Highest priority value will be used.
- * Default parameters are priority 0
- * Per-uri parameters are priority 1
- * Command parameters are priority 2
- */
-static Parameter defconfig[ParameterLast] = {
- /* parameter Arg value priority */
- [AcceleratedCanvas] = { { .i = 1 }, },
- [AccessMicrophone] = { { .i = 0 }, },
- [AccessWebcam] = { { .i = 0 }, },
- [Certificate] = { { .i = 0 }, },
- [CaretBrowsing] = { { .i = 0 }, },
- [CookiePolicies] = { { .v = "@Aa" }, },
- [DefaultCharset] = { { .v = "UTF-8" }, },
- [DiskCache] = { { .i = 1 }, },
- [DNSPrefetch] = { { .i = 0 }, },
- [FileURLsCrossAccess] = { { .i = 0 }, },
- [FontSize] = { { .i = 12 }, },
- [FrameFlattening] = { { .i = 0 }, },
- [Geolocation] = { { .i = 0 }, },
- [HideBackground] = { { .i = 0 }, },
- [Inspector] = { { .i = 0 }, },
- [Java] = { { .i = 1 }, },
- [JavaScript] = { { .i = 1 }, },
- [KioskMode] = { { .i = 0 }, },
- [LoadImages] = { { .i = 1 }, },
- [MediaManualPlay] = { { .i = 1 }, },
- [Plugins] = { { .i = 1 }, },
- [PreferredLanguages] = { { .v = (char *[]){ NULL } }, },
- [RunInFullscreen] = { { .i = 0 }, },
- [ScrollBars] = { { .i = 1 }, },
- [ShowIndicators] = { { .i = 1 }, },
- [SiteQuirks] = { { .i = 1 }, },
- [SmoothScrolling] = { { .i = 0 }, },
- [SpellChecking] = { { .i = 0 }, },
- [SpellLanguages] = { { .v = ((char *[]){ "en_US", NULL }) }, },
- [StrictTLS] = { { .i = 1 }, },
- [Style] = { { .i = 1 }, },
- [WebGL] = { { .i = 0 }, },
- [ZoomLevel] = { { .f = 1.0 }, },
-};
-
-static UriParameters uriparams[] = {
- { "(://|\\.)suckless\\.org(/|$)", {
- [JavaScript] = { { .i = 0 }, 1 },
- [Plugins] = { { .i = 0 }, 1 },
- }, },
-};
-
-/* default window size: width, height */
-static int winsize[] = { 800, 600 };
-
-static WebKitFindOptions findopts = WEBKIT_FIND_OPTIONS_CASE_INSENSITIVE |
- WEBKIT_FIND_OPTIONS_WRAP_AROUND;
-
-#define PROMPT_GO "Go:"
-#define PROMPT_FIND "Find:"
-
-/* SETPROP(readprop, setprop, prompt)*/
-#define SETPROP(r, s, p) { \
- .v = (const char *[]){ "/bin/sh", "-c", \
- "prop=\"$(printf '%b' \"$(xprop -id $1 $2 " \
- "| sed \"s/^$2(STRING) = //;s/^\\\"\\(.*\\)\\\"$/\\1/\" && cut -d' ' -f1 ~/.surf/bookmarks)\" " \
- "| dmenu -i -l 10 -p \"$4\" -w $1)\" && " \
- "xprop -id $1 -f $3 8s -set $3 \"$prop\"", \
- "surf-setprop", winid, r, s, p, NULL \
- } \
-}
-
-/* DOWNLOAD(URI, referer) */
-#define DOWNLOAD(u, r) { \
- .v = (const char *[]){ "st", "-e", "/bin/sh", "-c",\
- "curl -g -L -J -O -A \"$1\" -b \"$2\" -c \"$2\"" \
- " -e \"$3\" \"$4\"; read", \
- "surf-download", useragent, cookiefile, r, u, NULL \
- } \
-}
-
-/* PLUMB(URI) */
-/* This called when some URI which does not begin with "about:",
- * "http://" or "https://" should be opened.
- */
-#define PLUMB(u) {\
- .v = (const char *[]){ "/bin/sh", "-c", \
- "xdg-open \"$0\"", u, NULL \
- } \
-}
-
-/* VIDEOPLAY(URI) */
-#define VIDEOPLAY(u) {\
- .v = (const char *[]){ "/bin/sh", "-c", \
- "mpv --really-quiet \"$0\"", u, NULL \
- } \
-}
-
-/* Passes the current url to mpv */
-#define MPV { \
- .v = (char *[]){ "/bin/sh", "-c", \
- "mpv $(xprop -id $0 _SURF_URI | cut -d \\\" -f 2)", \
- winid, NULL \
- } \
-}
-
-/* styles */
-/*
- * The iteration will stop at the first match, beginning at the beginning of
- * the list.
- */
-static SiteSpecific styles[] = {
- /* regexp file in $styledir */
- { ".*", "default.css" },
-};
-
-/* certificates */
-/*
- * Provide custom certificate for urls
- */
-static SiteSpecific certs[] = {
- /* regexp file in $certdir */
- { "://suckless\\.org/", "suckless.org.crt" },
-};
-
-#define MODKEY GDK_CONTROL_MASK
-
-/* hotkeys */
-/*
- * If you use anything else but MODKEY and GDK_SHIFT_MASK, don't forget to
- * edit the CLEANMASK() macro.
- */
-static Key keys[] = {
- /* modifier keyval function arg */
- { 0, GDK_KEY_o, spawn, SETPROP("_SURF_URI", "_SURF_GO", PROMPT_GO) },
- { 0, GDK_KEY_f, spawn, SETPROP("_SURF_FIND", "_SURF_FIND", PROMPT_FIND) },
- { 0, GDK_KEY_slash, spawn, SETPROP("_SURF_FIND", "_SURF_FIND", PROMPT_FIND) },
- { 0, GDK_KEY_w, spawn, MPV },
-
- { 0, GDK_KEY_i, insert, { .i = 1 } },
- { 0, GDK_KEY_Escape, insert, { .i = 0 } },
-
- { 0, GDK_KEY_c, stop, { 0 } },
-
- { MODKEY, GDK_KEY_r, reload, { .i = 1 } },
- { 0, GDK_KEY_r, reload, { .i = 0 } },
-
- { 0, GDK_KEY_l, navigate, { .i = +1 } },
- { 0, GDK_KEY_h, navigate, { .i = -1 } },
-
- /* vertical and horizontal scrolling, in viewport percentage */
- { 0, GDK_KEY_j, scrollv, { .i = +10 } },
- { 0, GDK_KEY_k, scrollv, { .i = -10 } },
- { 0, GDK_KEY_u, scrollv, { .i = -50 } },
- { 0, GDK_KEY_d, scrollv, { .i = +50 } },
- { 0|GDK_SHIFT_MASK, GDK_KEY_j, zoom, { .i = -1 } },
- { 0|GDK_SHIFT_MASK, GDK_KEY_k, zoom, { .i = +1 } },
-
- { 0|GDK_SHIFT_MASK, GDK_KEY_j, zoom, { .i = -1 } },
- { 0|GDK_SHIFT_MASK, GDK_KEY_k, zoom, { .i = +1 } },
- { 0|GDK_SHIFT_MASK, GDK_KEY_q, zoom, { .i = 0 } },
- { 0, GDK_KEY_minus, zoom, { .i = -1 } },
- { 0|GDK_SHIFT_MASK, GDK_KEY_plus, zoom, { .i = +1 } },
- { 0, GDK_KEY_equal, zoom, { .i = 0 } },
-
- { 0, GDK_KEY_p, clipboard, { .i = 1 } },
- { 0, GDK_KEY_y, clipboard, { .i = 0 } },
-
- { 0, GDK_KEY_n, find, { .i = +1 } },
- { 0|GDK_SHIFT_MASK, GDK_KEY_n, find, { .i = -1 } },
-
- { MODKEY, GDK_KEY_p, print, { 0 } },
- { MODKEY, GDK_KEY_t, showcert, { 0 } },
-
- { MODKEY|GDK_SHIFT_MASK, GDK_KEY_c, toggle, { .i = CaretBrowsing } },
- { MODKEY|GDK_SHIFT_MASK, GDK_KEY_f, toggle, { .i = FrameFlattening } },
- { MODKEY|GDK_SHIFT_MASK, GDK_KEY_g, toggle, { .i = Geolocation } },
- { MODKEY|GDK_SHIFT_MASK, GDK_KEY_s, toggle, { .i = JavaScript } },
- { MODKEY|GDK_SHIFT_MASK, GDK_KEY_i, toggle, { .i = LoadImages } },
- { MODKEY|GDK_SHIFT_MASK, GDK_KEY_v, toggle, { .i = Plugins } },
- { MODKEY|GDK_SHIFT_MASK, GDK_KEY_b, toggle, { .i = ScrollBars } },
- { MODKEY|GDK_SHIFT_MASK, GDK_KEY_t, toggle, { .i = StrictTLS } },
- { MODKEY|GDK_SHIFT_MASK, GDK_KEY_m, toggle, { .i = Style } },
-
- { MODKEY|GDK_SHIFT_MASK, GDK_KEY_a, togglecookiepolicy, { 0 } },
- { 0, GDK_KEY_F11, togglefullscreen, { 0 } },
- { MODKEY|GDK_SHIFT_MASK, GDK_KEY_o, toggleinspector, { 0 } },
-};
-
-/* button definitions */
-/* target can be OnDoc, OnLink, OnImg, OnMedia, OnEdit, OnBar, OnSel, OnAny */
-static Button buttons[] = {
- /* target event mask button function argument stop event */
- { OnLink, 0, 2, clicknewwindow, { .i = 0 }, 1 },
- { OnLink, MODKEY, 2, clicknewwindow, { .i = 1 }, 1 },
- { OnLink, MODKEY, 1, clicknewwindow, { .i = 1 }, 1 },
- { OnAny, 0, 8, clicknavigate, { .i = -1 }, 1 },
- { OnAny, 0, 9, clicknavigate, { .i = +1 }, 1 },
- { OnMedia, MODKEY, 1, clickexternplayer, { 0 }, 1 },
-};
diff --git a/.repos/surf/config.mk b/.repos/surf/config.mk
deleted file mode 100644
index 5e68e38..0000000
--- a/.repos/surf/config.mk
+++ /dev/null
@@ -1,31 +0,0 @@
-# surf version
-VERSION = 2.0
-
-# Customize below to fit your system
-
-# paths
-PREFIX = /usr/local
-MANPREFIX = $(PREFIX)/share/man
-LIBPREFIX = $(PREFIX)/lib
-LIBDIR = $(LIBPREFIX)/surf
-
-X11INC = `pkg-config --cflags x11`
-X11LIB = `pkg-config --libs x11`
-
-GTKINC = `pkg-config --cflags gtk+-3.0 gcr-3 webkit2gtk-4.0`
-GTKLIB = `pkg-config --libs gtk+-3.0 gcr-3 webkit2gtk-4.0`
-WEBEXTINC = `pkg-config --cflags webkit2gtk-4.0 webkit2gtk-web-extension-4.0`
-WEBEXTLIBS = `pkg-config --libs webkit2gtk-4.0 webkit2gtk-web-extension-4.0`
-
-# includes and libs
-INCS = $(X11INC) $(GTKINC)
-LIBS = $(X11LIB) $(GTKLIB) -lgthread-2.0
-
-# flags
-CPPFLAGS = -DVERSION=\"$(VERSION)\" -DWEBEXTDIR=\"$(LIBDIR)\" \
- -D_DEFAULT_SOURCE -DGCR_API_SUBJECT_TO_CHANGE
-SURFCFLAGS = $(INCS) $(CPPFLAGS) -fPIC
-WEBEXTCFLAGS = -fPIC $(WEBEXTINC)
-
-# compiler
-#CC = c99
diff --git a/.repos/surf/libsurf-webext.c b/.repos/surf/libsurf-webext.c
deleted file mode 100644
index ec9a235..0000000
--- a/.repos/surf/libsurf-webext.c
+++ /dev/null
@@ -1,128 +0,0 @@
-#include <sys/stat.h>
-#include <fcntl.h>
-#include <limits.h>
-#include <stdlib.h>
-
-#include <gio/gio.h>
-#include <webkit2/webkit-web-extension.h>
-#include <webkitdom/webkitdom.h>
-#include <webkitdom/WebKitDOMDOMWindowUnstable.h>
-
-#include "common.h"
-
-#define LENGTH(x) (sizeof(x) / sizeof(x[0]))
-
-typedef struct Page {
- guint64 id;
- WebKitWebPage *webpage;
- struct Page *next;
-} Page;
-
-static int pipein, pipeout;
-static Page *pages;
-
-Page *
-newpage(WebKitWebPage *page)
-{
- Page *p;
-
- if (!(p = calloc(1, sizeof(Page))))
- die("Cannot malloc!\n");
-
- p->next = pages;
- pages = p;
-
- p->id = webkit_web_page_get_id(page);
- p->webpage = page;
-
- return p;
-}
-
-static void
-msgsurf(Page *p, const char *s)
-{
- static char msg[MSGBUFSZ];
- size_t sln = strlen(s);
- int ret;
-
- if ((ret = snprintf(msg, sizeof(msg), "%c%c%s",
- 2 + sln, p ? p->id : 0, s))
- >= sizeof(msg)) {
- fprintf(stderr, "webext: message too long: %d\n", ret);
- return;
- }
-
- if (pipeout && write(pipeout, msg, sizeof(msg)) < 0)
- fprintf(stderr, "webext: error sending: %.*s\n", ret-2, msg+2);
-}
-
-static gboolean
-readpipe(GIOChannel *s, GIOCondition c, gpointer unused)
-{
- static char msg[MSGBUFSZ], msgsz;
- WebKitDOMDOMWindow *view;
- GError *gerr = NULL;
- glong wh, ww;
- Page *p;
-
- if (g_io_channel_read_chars(s, msg, LENGTH(msg), NULL, &gerr) !=
- G_IO_STATUS_NORMAL) {
- fprintf(stderr, "webext: error reading pipe: %s\n",
- gerr->message);
- g_error_free(gerr);
- return TRUE;
- }
- if ((msgsz = msg[0]) < 3) {
- fprintf(stderr, "webext: message too short: %d\n", msgsz);
- return TRUE;
- }
-
- for (p = pages; p; p = p->next) {
- if (p->id == msg[1])
- break;
- }
- if (!p || !(view = webkit_dom_document_get_default_view(
- webkit_web_page_get_dom_document(p->webpage))))
- return TRUE;
-
- switch (msg[2]) {
- case 'h':
- if (msgsz != 4)
- return TRUE;
- ww = webkit_dom_dom_window_get_inner_width(view);
- webkit_dom_dom_window_scroll_by(view,
- (ww / 100) * msg[3], 0);
- break;
- case 'v':
- if (msgsz != 4)
- return TRUE;
- wh = webkit_dom_dom_window_get_inner_height(view);
- webkit_dom_dom_window_scroll_by(view,
- 0, (wh / 100) * msg[3]);
- break;
- }
-
- return TRUE;
-}
-
-static void
-webpagecreated(WebKitWebExtension *e, WebKitWebPage *wp, gpointer unused)
-{
- Page *p = newpage(wp);
-}
-
-G_MODULE_EXPORT void
-webkit_web_extension_initialize_with_user_data(WebKitWebExtension *e, GVariant *gv)
-{
- GIOChannel *gchanpipe;
-
- g_signal_connect(e, "page-created", G_CALLBACK(webpagecreated), NULL);
-
- g_variant_get(gv, "(ii)", &pipein, &pipeout);
- msgsurf(NULL, "i");
-
- gchanpipe = g_io_channel_unix_new(pipein);
- g_io_channel_set_encoding(gchanpipe, NULL, NULL);
- g_io_channel_set_close_on_unref(gchanpipe, TRUE);
- g_io_add_watch(gchanpipe, G_IO_IN, readpipe, NULL);
-}
diff --git a/.repos/surf/surf-open.sh b/.repos/surf/surf-open.sh
deleted file mode 100755
index c22edc2..0000000
--- a/.repos/surf/surf-open.sh
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/bin/sh
-#
-# See the LICENSE file for copyright and license details.
-#
-
-xidfile="$HOME/tmp/tabbed-surf.xid"
-uri=""
-
-if [ "$#" -gt 0 ];
-then
- uri="$1"
-fi
-
-runtabbed() {
- tabbed -dn tabbed-surf -r 2 surf -e '' "$uri" >"$xidfile" \
- 2>/dev/null &
-}
-
-if [ ! -r "$xidfile" ];
-then
- runtabbed
-else
- xid=$(cat "$xidfile")
- xprop -id "$xid" >/dev/null 2>&1
- if [ $? -gt 0 ];
- then
- runtabbed
- else
- surf -e "$xid" "$uri" >/dev/null 2>&1 &
- fi
-fi
-
diff --git a/.repos/surf/surf.1 b/.repos/surf/surf.1
deleted file mode 100644
index 45c31bb..0000000
--- a/.repos/surf/surf.1
+++ /dev/null
@@ -1,330 +0,0 @@
-.TH SURF 1 surf\-VERSION
-.SH NAME
-surf \- simple webkit-based browser
-.SH SYNOPSIS
-.B surf
-.RB [-bBdDfFgGiIkKmMnNpPsStTvwxX]
-.RB [-a\ cookiepolicies]
-.RB [-c\ cookiefile]
-.RB [-C\ stylefile]
-.RB [-e\ xid]
-.RB [-r\ scriptfile]
-.RB [-u\ useragent]
-.RB [-z\ zoomlevel]
-.RB [URI]
-.SH DESCRIPTION
-surf is a simple Web browser based on WebKit/GTK+. It is able
-to display websites and follow links. It supports the XEmbed protocol
-which makes it possible to embed it in another application. Furthermore,
-one can point surf to another URI by setting its XProperties.
-.SH OPTIONS
-.TP
-.B \-a cookiepolicies
-Define the order of
-.I cookie policies\fR.
-The default is "@Aa" but could be
-redefined in the
-.IR config.h ,
-with "A" meaning to
-accept all cookies, "a" to deny all cookies and "@", which tells surf to
-accept no third party cookies.
-.TP
-.B \-b
-Disable Scrollbars.
-.TP
-.B \-B
-Enable Scrollbars.
-.TP
-.B \-c cookiefile
-Specify the
-.I cookiefile
-to use.
-.TP
-.B \-C stylefile
-Specify the user
-.IR stylefile .
-This does disable the site-specific styles.
-.TP
-.B \-d
-Disable the disk cache.
-.TP
-.B \-D
-Enable the disk cache.
-.TP
-.B \-e xid
-Reparents to window specified by
-.IR xid .
-.TP
-.B \-f
-Start surf in windowed mode (not fullscreen).
-.TP
-.B \-F
-Start surf in fullscreen mode.
-.TP
-.B \-g
-Disable giving the geolocation to websites.
-.TP
-.B \-G
-Enable giving the geolocation to websites.
-.TP
-.B \-i
-Disable Images.
-.TP
-.B \-I
-Enable Images.
-.TP
-.B \-k
-Disable kiosk mode (disable key strokes and right click).
-.TP
-.B \-K
-Enable kiosk mode (disable key strokes and right click).
-.TP
-.B \-m
-Disable application of user style sheets.
-.TP
-.B \-M
-Enable application of user style sheets.
-.TP
-.B \-n
-Disable the Web Inspector (Developer Tools).
-.TP
-.B \-N
-Enable the Web Inspector (Developer Tools).
-.TP
-.B \-p
-Disable Plugins.
-.TP
-.B \-P
-Enable Plugins.
-.TP
-.B \-r scriptfile
-Specify the user
-.IR scriptfile .
-.TP
-.B \-s
-Disable Javascript.
-.TP
-.B \-S
-Enable Javascript.
-.TP
-.B \-t
-Disable strict TLS check.
-.TP
-.B \-T
-Enable strict TLS check.
-.TP
-.B \-u useragent
-Specify the
-.I useragent
-which surf should use.
-.TP
-.B \-v
-Prints version information to standard output, then exits.
-.TP
-.B \-w
-Prints xid to standard output. This can be used to script the browser in for
-example
-.BR xdotool(1) .
-.TP
-.B -x
-Disable custom certificates.
-.TP
-.B -X
-Enable custom certificates.
-.TP
-.B \-z zoomlevel
-Specify the
-.I zoomlevel
-which surf should use.
-.SH USAGE
-.B Escape
-Stops loading current page or stops download.
-.TP
-.B Ctrl\-h
-Walks back the history.
-.TP
-.B Ctrl\-l
-Walks forward the history.
-.TP
-.B Ctrl\-k
-Scrolls page upwards.
-.TP
-.B Ctrl\-j
-Scrolls page downwards.
-.TP
-.B Ctrl\-b
-Scroll up one whole page view.
-.TP
-.B Ctrl\-Space
-Scroll down one whole page view.
-.TP
-.B Ctrl\-i
-Scroll horizontally to the right.
-.TP
-.B Ctrl\-u
-Scroll horizontally to the left.
-.TP
-.B Ctrl\-Shift\-k or Ctrl\-+
-Zooms page in.
-.TP
-.B Ctrl\-Shift\-j or Ctrl\--
-Zooms page out.
-.TP
-.B Ctrl\-Shift\-q
-Resets Zoom.
-.TP
-.B Ctrl\-f and Ctrl\-/
-Opens the search-bar.
-.TP
-.B Ctrl\-n
-Go to next search result.
-.TP
-.B Ctrl\-Shift\-n
-Go to previous search result.
-.TP
-.B Ctrl\-g
-Opens the URL-bar (requires dmenu installed).
-.TP
-.B Ctrl\-p
-Loads URI from primary selection.
-.TP
-.B Ctrl\-Shift\-p
-Calls Printpage Dialog.
-.TP
-.B Ctrl\-r
-Reloads the website.
-.TP
-.B Ctrl\-Shift\-r
-Reloads the website without using the cache.
-.TP
-.B Ctrl\-y
-Copies current URI to primary selection.
-.TP
-.B Ctrl\-t
-Display the current TLS certificate in a popup window.
-.TP
-.B Ctrl\-Shift\-a
-Toggle through the the
-.I cookie policies\fR.
-This will not reload the page.
-.TP
-.B Ctrl\-Shift\-b
-Toggle scrollbars. This will reload the page.
-.TP
-.B Ctrl\-Shift\-c
-Toggle caret browsing. This will reload the page.
-.TP
-.B Ctrl\-Shift\-i
-Toggle auto-loading of images. This will reload the page.
-.TP
-.B Ctrl\-Shift\-m
-Toggle if the
-.I stylefile
-file should be loaded. This will reload the page.
-.TP
-.B Ctrl\-Shift\-o
-Open the Web Inspector (Developer Tools) window for the current page.
-.TP
-.B Ctrl\-Shift\-s
-Toggle script execution. This will reload the page.
-.TP
-.B Ctrl\-Shift\-t
-Toggle strict TLS check. This will reload the page.
-.TP
-.B Ctrl\-Shift\-v
-Toggle the enabling of plugins on that surf instance. This will reload the
-page.
-.TP
-.B F11
-Toggle fullscreen mode.
-.SH INDICATORS OF OPERATION
-Surf is showing indicators of operation in front of the site title.
-For all indicators, unless otherwise specified, a lower case letter means disabled and an upper case letter means enabled.
-.TP
-.B A
-all cookies accepted
-.TP
-.B a
-no cookies accepted
-.TP
-.B @
-all except third-party cookies accepted
-.TP
-.B c C
-caret browsing
-.TP
-.B g G
-geolocation
-.TP
-.B d D
-disk cache
-.TP
-.B i I
-images
-.TP
-.B s S
-scripts
-.TP
-.B v V
-plugins
-.TP
-.B m M
-styles
-.TP
-.B f F
-frame flattening
-.TP
-.B x X
-custom certificates
-.TP
-.B t T
-strict TLS
-.SH INDICATORS OF WEB PAGE
-The second part of the indicators specifies modes of the web page itself.
-.SS First character: encryption
-.TP
-.B -
-unencrypted
-.TP
-.B T
-encrypted (TLS)
-.TP
-.B U
-attempted encryption but failed
-.SS Second character: proxying
-.TP
-.B -
-no proxy
-.TP
-.B P
-using proxy
-.SH ENVIRONMENT
-.B SURF_USERAGENT
-If this variable is set upon startup, surf will use it as the
-.I useragent
-string.
-.TP
-.B http_proxy
-If this variable is set and not empty upon startup, surf will use it as the http proxy.
-.SH SIGNALS
-Surf will reload the current page on
-.BR SIGHUP .
-.SH PLUGINS
-For using plugins in surf, first determine your running architecture. Then get
-the appropriate plugin for that architecture and copy it to
-.BR /usr/lib/browser-plugins
-or
-.BR /usr/lib64/browser-plugins.
-Surf should load them automatically.
-.BR
-If you want to use a 32bit plugin on a 64bit system,
-.BR nspluginwrapper(1)
-will help you.
-.SH SEE ALSO
-.BR dmenu(1),
-.BR xprop(1),
-.BR tabbed(1),
-.BR nspluginwrapper(1),
-.BR xdotool(1)
-.SH BUGS
-Please report them!
diff --git a/.repos/surf/surf.c b/.repos/surf/surf.c
deleted file mode 100644
index 7a4e150..0000000
--- a/.repos/surf/surf.c
+++ /dev/null
@@ -1,2169 +0,0 @@
-/* See LICENSE file for copyright and license details.
- *
- * To understand surf, start reading main().
- */
-#include <sys/file.h>
-#include <sys/types.h>
-#include <sys/wait.h>
-#include <glib.h>
-#include <libgen.h>
-#include <limits.h>
-#include <pwd.h>
-#include <regex.h>
-#include <signal.h>
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include <unistd.h>
-
-#include <gdk/gdk.h>
-#include <gdk/gdkkeysyms.h>
-#include <gdk/gdkx.h>
-#include <glib/gstdio.h>
-#include <gtk/gtk.h>
-#include <gtk/gtkx.h>
-#include <gcr/gcr.h>
-#include <JavaScriptCore/JavaScript.h>
-#include <webkit2/webkit2.h>
-#include <X11/X.h>
-#include <X11/Xatom.h>
-#include <glib.h>
-
-#include "arg.h"
-#include "common.h"
-
-#define LENGTH(x) (sizeof(x) / sizeof(x[0]))
-#define CLEANMASK(mask) (mask & (MODKEY|GDK_SHIFT_MASK))
-
-enum { AtomFind, AtomGo, AtomUri, AtomLast };
-
-enum {
- OnDoc = WEBKIT_HIT_TEST_RESULT_CONTEXT_DOCUMENT,
- OnLink = WEBKIT_HIT_TEST_RESULT_CONTEXT_LINK,
- OnImg = WEBKIT_HIT_TEST_RESULT_CONTEXT_IMAGE,
- OnMedia = WEBKIT_HIT_TEST_RESULT_CONTEXT_MEDIA,
- OnEdit = WEBKIT_HIT_TEST_RESULT_CONTEXT_EDITABLE,
- OnBar = WEBKIT_HIT_TEST_RESULT_CONTEXT_SCROLLBAR,
- OnSel = WEBKIT_HIT_TEST_RESULT_CONTEXT_SELECTION,
- OnAny = OnDoc | OnLink | OnImg | OnMedia | OnEdit | OnBar | OnSel,
-};
-
-typedef enum {
- AcceleratedCanvas,
- AccessMicrophone,
- AccessWebcam,
- CaretBrowsing,
- Certificate,
- CookiePolicies,
- DiskCache,
- DefaultCharset,
- DNSPrefetch,
- FileURLsCrossAccess,
- FontSize,
- FrameFlattening,
- Geolocation,
- HideBackground,
- Inspector,
- Java,
- JavaScript,
- KioskMode,
- LoadImages,
- MediaManualPlay,
- Plugins,
- PreferredLanguages,
- RunInFullscreen,
- ScrollBars,
- ShowIndicators,
- SiteQuirks,
- SmoothScrolling,
- SpellChecking,
- SpellLanguages,
- StrictTLS,
- Style,
- WebGL,
- ZoomLevel,
- ParameterLast
-} ParamName;
-
-typedef union {
- int i;
- float f;
- const void *v;
-} Arg;
-
-typedef struct {
- Arg val;
- int prio;
-} Parameter;
-
-typedef struct Client {
- GtkWidget *win;
- WebKitWebView *view;
- WebKitWebInspector *inspector;
- WebKitFindController *finder;
- WebKitHitTestResult *mousepos;
- GTlsCertificate *cert, *failedcert;
- GTlsCertificateFlags tlserr;
- Window xid;
- unsigned long pageid;
- int progress, fullscreen, https, insecure, errorpage;
- const char *title, *overtitle, *targeturi;
- const char *needle;
- struct Client *next;
-} Client;
-
-typedef struct {
- guint mod;
- guint keyval;
- void (*func)(Client *c, const Arg *a);
- const Arg arg;
-} Key;
-
-typedef struct {
- unsigned int target;
- unsigned int mask;
- guint button;
- void (*func)(Client *c, const Arg *a, WebKitHitTestResult *h);
- const Arg arg;
- unsigned int stopevent;
-} Button;
-
-typedef struct {
- char *token;
- char *uri;
-} SearchEngine;
-
-typedef struct {
- const char *uri;
- Parameter config[ParameterLast];
- regex_t re;
-} UriParameters;
-
-typedef struct {
- char *regex;
- char *file;
- regex_t re;
-} SiteSpecific;
-
-/* Surf */
-static void usage(void);
-static void setup(void);
-static void sigchld(int unused);
-static void sighup(int unused);
-static char *buildfile(const char *path);
-static char *buildpath(const char *path);
-static char *untildepath(const char *path);
-static const char *getuserhomedir(const char *user);
-static const char *getcurrentuserhomedir(void);
-static Client *newclient(Client *c);
-static void loaduri(Client *c, const Arg *a);
-static const char *geturi(Client *c);
-static void setatom(Client *c, int a, const char *v);
-static const char *getatom(Client *c, int a);
-static void updatetitle(Client *c);
-static void gettogglestats(Client *c);
-static void getpagestats(Client *c);
-static WebKitCookieAcceptPolicy cookiepolicy_get(void);
-static char cookiepolicy_set(const WebKitCookieAcceptPolicy p);
-static void seturiparameters(Client *c, const char *uri, ParamName *params);
-static void setparameter(Client *c, int refresh, ParamName p, const Arg *a);
-static const char *getcert(const char *uri);
-static void setcert(Client *c, const char *file);
-static const char *getstyle(const char *uri);
-static void setstyle(Client *c, const char *file);
-static void runscript(Client *c);
-static void evalscript(Client *c, const char *jsstr, ...);
-static void updatewinid(Client *c);
-static void handleplumb(Client *c, const char *uri);
-static void newwindow(Client *c, const Arg *a, int noembed);
-static void spawn(Client *c, const Arg *a);
-static void msgext(Client *c, char type, const Arg *a);
-static void destroyclient(Client *c);
-static void cleanup(void);
-static int insertmode = 0;
-
-/* GTK/WebKit */
-static WebKitWebView *newview(Client *c, WebKitWebView *rv);
-static void initwebextensions(WebKitWebContext *wc, Client *c);
-static GtkWidget *createview(WebKitWebView *v, WebKitNavigationAction *a,
- Client *c);
-static gboolean buttonreleased(GtkWidget *w, GdkEvent *e, Client *c);
-static GdkFilterReturn processx(GdkXEvent *xevent, GdkEvent *event,
- gpointer d);
-static gboolean winevent(GtkWidget *w, GdkEvent *e, Client *c);
-static gboolean readpipe(GIOChannel *s, GIOCondition ioc, gpointer unused);
-static void showview(WebKitWebView *v, Client *c);
-static GtkWidget *createwindow(Client *c);
-static gboolean loadfailedtls(WebKitWebView *v, gchar *uri,
- GTlsCertificate *cert,
- GTlsCertificateFlags err, Client *c);
-static void loadchanged(WebKitWebView *v, WebKitLoadEvent e, Client *c);
-static void progresschanged(WebKitWebView *v, GParamSpec *ps, Client *c);
-static void titlechanged(WebKitWebView *view, GParamSpec *ps, Client *c);
-static void mousetargetchanged(WebKitWebView *v, WebKitHitTestResult *h,
- guint modifiers, Client *c);
-static gboolean permissionrequested(WebKitWebView *v,
- WebKitPermissionRequest *r, Client *c);
-static gboolean decidepolicy(WebKitWebView *v, WebKitPolicyDecision *d,
- WebKitPolicyDecisionType dt, Client *c);
-static void decidenavigation(WebKitPolicyDecision *d, Client *c);
-static void decidenewwindow(WebKitPolicyDecision *d, Client *c);
-static void decideresource(WebKitPolicyDecision *d, Client *c);
-static void insecurecontent(WebKitWebView *v, WebKitInsecureContentEvent e,
- Client *c);
-static void downloadstarted(WebKitWebContext *wc, WebKitDownload *d,
- Client *c);
-static void responsereceived(WebKitDownload *d, GParamSpec *ps, Client *c);
-static void download(Client *c, WebKitURIResponse *r);
-static void webprocessterminated(WebKitWebView *v,
- WebKitWebProcessTerminationReason r,
- Client *c);
-static void closeview(WebKitWebView *v, Client *c);
-static void destroywin(GtkWidget* w, Client *c);
-static gchar *parseuri(const gchar *uri);
-
-/* Hotkeys */
-static void pasteuri(GtkClipboard *clipboard, const char *text, gpointer d);
-static void reload(Client *c, const Arg *a);
-static void print(Client *c, const Arg *a);
-static void showcert(Client *c, const Arg *a);
-static void clipboard(Client *c, const Arg *a);
-static void zoom(Client *c, const Arg *a);
-static void scrollv(Client *c, const Arg *a);
-static void scrollh(Client *c, const Arg *a);
-static void navigate(Client *c, const Arg *a);
-static void stop(Client *c, const Arg *a);
-static void toggle(Client *c, const Arg *a);
-static void togglefullscreen(Client *c, const Arg *a);
-static void togglecookiepolicy(Client *c, const Arg *a);
-static void toggleinspector(Client *c, const Arg *a);
-static void find(Client *c, const Arg *a);
-static void insert(Client *c, const Arg *a);
-
-/* Buttons */
-static void clicknavigate(Client *c, const Arg *a, WebKitHitTestResult *h);
-static void clicknewwindow(Client *c, const Arg *a, WebKitHitTestResult *h);
-static void clickexternplayer(Client *c, const Arg *a, WebKitHitTestResult *h);
-
-static char winid[64];
-static char togglestats[12];
-static char pagestats[2];
-static Atom atoms[AtomLast];
-static Window embed;
-static int showxid;
-static int cookiepolicy;
-static Display *dpy;
-static Client *clients;
-static GdkDevice *gdkkb;
-static char *stylefile;
-static const char *useragent;
-static Parameter *curconfig;
-static int modparams[ParameterLast];
-static int pipein[2], pipeout[2];
-char *argv0;
-
-static ParamName loadtransient[] = {
- Certificate,
- CookiePolicies,
- DiskCache,
- DNSPrefetch,
- FileURLsCrossAccess,
- JavaScript,
- LoadImages,
- PreferredLanguages,
- ShowIndicators,
- StrictTLS,
- ParameterLast
-};
-
-static ParamName loadcommitted[] = {
- AcceleratedCanvas,
-// AccessMicrophone,
-// AccessWebcam,
- CaretBrowsing,
- DefaultCharset,
- FontSize,
- FrameFlattening,
- Geolocation,
- HideBackground,
- Inspector,
- Java,
-// KioskMode,
- MediaManualPlay,
- Plugins,
- RunInFullscreen,
- ScrollBars,
- SiteQuirks,
- SmoothScrolling,
- SpellChecking,
- SpellLanguages,
- Style,
- ZoomLevel,
- ParameterLast
-};
-
-static ParamName loadfinished[] = {
- ParameterLast
-};
-
-/* configuration, allows nested code to access above variables */
-#include "config.h"
-
-void
-usage(void)
-{
- die("usage: surf [-bBdDfFgGiIkKmMnNpPsStTvwxX]\n"
- "[-a cookiepolicies ] [-c cookiefile] [-C stylefile] [-e xid]\n"
- "[-r scriptfile] [-u useragent] [-z zoomlevel] [uri]\n");
-}
-
-void
-setup(void)
-{
- GIOChannel *gchanin;
- GdkDisplay *gdpy;
- int i, j;
-
- /* clean up any zombies immediately */
- sigchld(0);
- if (signal(SIGHUP, sighup) == SIG_ERR)
- die("Can't install SIGHUP handler");
-
- if (!(dpy = XOpenDisplay(NULL)))
- die("Can't open default display");
-
- /* atoms */
- atoms[AtomFind] = XInternAtom(dpy, "_SURF_FIND", False);
- atoms[AtomGo] = XInternAtom(dpy, "_SURF_GO", False);
- atoms[AtomUri] = XInternAtom(dpy, "_SURF_URI", False);
-
- gtk_init(NULL, NULL);
-
- gdpy = gdk_display_get_default();
-
- curconfig = defconfig;
-
- /* dirs and files */
- cookiefile = buildfile(cookiefile);
- scriptfile = buildfile(scriptfile);
- cachedir = buildpath(cachedir);
- certdir = buildpath(certdir);
-
- gdkkb = gdk_seat_get_keyboard(gdk_display_get_default_seat(gdpy));
-
- if (pipe(pipeout) < 0 || pipe(pipein) < 0) {
- fputs("Unable to create pipes\n", stderr);
- } else {
- gchanin = g_io_channel_unix_new(pipein[0]);
- g_io_channel_set_encoding(gchanin, NULL, NULL);
- g_io_channel_set_close_on_unref(gchanin, TRUE);
- g_io_add_watch(gchanin, G_IO_IN, readpipe, NULL);
- }
-
-
- for (i = 0; i < LENGTH(certs); ++i) {
- if (!regcomp(&(certs[i].re), certs[i].regex, REG_EXTENDED)) {
- certs[i].file = g_strconcat(certdir, "/", certs[i].file,
- NULL);
- } else {
- fprintf(stderr, "Could not compile regex: %s\n",
- certs[i].regex);
- certs[i].regex = NULL;
- }
- }
-
- if (!stylefile) {
- styledir = buildpath(styledir);
- for (i = 0; i < LENGTH(styles); ++i) {
- if (!regcomp(&(styles[i].re), styles[i].regex,
- REG_EXTENDED)) {
- styles[i].file = g_strconcat(styledir, "/",
- styles[i].file, NULL);
- } else {
- fprintf(stderr, "Could not compile regex: %s\n",
- styles[i].regex);
- styles[i].regex = NULL;
- }
- }
- g_free(styledir);
- } else {
- stylefile = buildfile(stylefile);
- }
-
- for (i = 0; i < LENGTH(uriparams); ++i) {
- if (regcomp(&(uriparams[i].re), uriparams[i].uri,
- REG_EXTENDED)) {
- fprintf(stderr, "Could not compile regex: %s\n",
- uriparams[i].uri);
- uriparams[i].uri = NULL;
- continue;
- }
-
- /* copy default parameters with higher priority */
- for (j = 0; j < ParameterLast; ++j) {
- if (defconfig[j].prio >= uriparams[i].config[j].prio)
- uriparams[i].config[j] = defconfig[j];
- }
- }
-}
-
-void
-sigchld(int unused)
-{
- if (signal(SIGCHLD, sigchld) == SIG_ERR)
- die("Can't install SIGCHLD handler");
- while (waitpid(-1, NULL, WNOHANG) > 0)
- ;
-}
-
-void
-sighup(int unused)
-{
- Arg a = { .i = 0 };
- Client *c;
-
- for (c = clients; c; c = c->next)
- reload(c, &a);
-}
-
-char *
-buildfile(const char *path)
-{
- char *dname, *bname, *bpath, *fpath;
- FILE *f;
-
- dname = g_path_get_dirname(path);
- bname = g_path_get_basename(path);
-
- bpath = buildpath(dname);
- g_free(dname);
-
- fpath = g_build_filename(bpath, bname, NULL);
- g_free(bpath);
- g_free(bname);
-
- if (!(f = fopen(fpath, "a")))
- die("Could not open file: %s\n", fpath);
-
- g_chmod(fpath, 0600); /* always */
- fclose(f);
-
- return fpath;
-}
-
-static const char*
-getuserhomedir(const char *user)
-{
- struct passwd *pw = getpwnam(user);
-
- if (!pw)
- die("Can't get user %s login information.\n", user);
-
- return pw->pw_dir;
-}
-
-static const char*
-getcurrentuserhomedir(void)
-{
- const char *homedir;
- const char *user;
- struct passwd *pw;
-
- homedir = getenv("HOME");
- if (homedir)
- return homedir;
-
- user = getenv("USER");
- if (user)
- return getuserhomedir(user);
-
- pw = getpwuid(getuid());
- if (!pw)
- die("Can't get current user home directory\n");
-
- return pw->pw_dir;
-}
-
-char *
-buildpath(const char *path)
-{
- char *apath, *fpath;
-
- if (path[0] == '~')
- apath = untildepath(path);
- else
- apath = g_strdup(path);
-
- /* creating directory */
- if (g_mkdir_with_parents(apath, 0700) < 0)
- die("Could not access directory: %s\n", apath);
-
- fpath = realpath(apath, NULL);
- g_free(apath);
-
- return fpath;
-}
-
-char *
-untildepath(const char *path)
-{
- char *apath, *name, *p;
- const char *homedir;
-
- if (path[1] == '/' || path[1] == '\0') {
- p = (char *)&path[1];
- homedir = getcurrentuserhomedir();
- } else {
- if ((p = strchr(path, '/')))
- name = g_strndup(&path[1], p - (path + 1));
- else
- name = g_strdup(&path[1]);
-
- homedir = getuserhomedir(name);
- g_free(name);
- }
- apath = g_build_filename(homedir, p, NULL);
- return apath;
-}
-
-Client *
-newclient(Client *rc)
-{
- Client *c;
-
- if (!(c = calloc(1, sizeof(Client))))
- die("Cannot malloc!\n");
-
- c->next = clients;
- clients = c;
-
- c->progress = 100;
- c->view = newview(c, rc ? rc->view : NULL);
-
- return c;
-}
-
-void
-loaduri(Client *c, const Arg *a)
-{
- struct stat st;
- char *url, *path, *apath;
- const char *uri = a->v;
-
- if (g_strcmp0(uri, "") == 0)
- return;
-
- if (g_str_has_prefix(uri, "http://") ||
- g_str_has_prefix(uri, "https://") ||
- g_str_has_prefix(uri, "file://") ||
- g_str_has_prefix(uri, "about:")) {
- url = g_strdup(uri);
- } else {
- if (uri[0] == '~')
- apath = untildepath(uri);
- else
- apath = (char *)uri;
- if (!stat(apath, &st) && (path = realpath(apath, NULL))) {
- url = g_strdup_printf("file://%s", path);
- free(path);
- } else {
- regex_t urlregex;
- int urlcheck;
- urlcheck = regcomp(&urlregex, "^[a-z0-9-]+[.][a-z.]+[^[:space:]]*$", REG_EXTENDED | REG_ICASE);
- urlcheck = regexec(&urlregex, uri, 0, NULL, 0);
- if (!urlcheck)
- url = g_strdup_printf("http://%s", uri);
- else
- url = parseuri(uri);
- regfree(&urlregex);
- }
- if (apath != uri)
- free(apath);
- }
-
- setatom(c, AtomUri, url);
-
- if (strcmp(url, geturi(c)) == 0) {
- reload(c, a);
- } else {
- webkit_web_view_load_uri(c->view, url);
- updatetitle(c);
- }
-
- g_free(url);
-}
-
-const char *
-geturi(Client *c)
-{
- const char *uri;
-
- if (!(uri = webkit_web_view_get_uri(c->view)))
- uri = "about:blank";
- return uri;
-}
-
-void
-setatom(Client *c, int a, const char *v)
-{
- XChangeProperty(dpy, c->xid,
- atoms[a], XA_STRING, 8, PropModeReplace,
- (unsigned char *)v, strlen(v) + 1);
- XSync(dpy, False);
-}
-
-const char *
-getatom(Client *c, int a)
-{
- static char buf[BUFSIZ];
- Atom adummy;
- int idummy;
- unsigned long ldummy;
- unsigned char *p = NULL;
-
- XSync(dpy, False);
- XGetWindowProperty(dpy, c->xid, atoms[a], 0L, BUFSIZ, False, XA_STRING,
- &adummy, &idummy, &ldummy, &ldummy, &p);
- if (p)
- strncpy(buf, (char *)p, LENGTH(buf) - 1);
- else
- buf[0] = '\0';
- XFree(p);
-
- return buf;
-}
-
-void
-updatetitle(Client *c)
-{
- char *title;
- const char *name = c->overtitle ? c->overtitle :
- c->title ? c->title : "";
-
- if (curconfig[ShowIndicators].val.i) {
- gettogglestats(c);
- getpagestats(c);
-
- if (c->progress != 100)
- title = g_strdup_printf("[%i%%] %s:%s | %s",
- c->progress, togglestats, pagestats, name);
- else
- title = g_strdup_printf("%s:%s | %s",
- togglestats, pagestats, name);
-
- gtk_window_set_title(GTK_WINDOW(c->win), title);
- g_free(title);
- } else {
- gtk_window_set_title(GTK_WINDOW(c->win), name);
- }
-}
-
-void
-gettogglestats(Client *c)
-{
- togglestats[0] = cookiepolicy_set(cookiepolicy_get());
- togglestats[1] = curconfig[CaretBrowsing].val.i ? 'C' : 'c';
- togglestats[2] = curconfig[Geolocation].val.i ? 'G' : 'g';
- togglestats[3] = curconfig[DiskCache].val.i ? 'D' : 'd';
- togglestats[4] = curconfig[LoadImages].val.i ? 'I' : 'i';
- togglestats[5] = curconfig[JavaScript].val.i ? 'S' : 's';
- togglestats[6] = curconfig[Plugins].val.i ? 'V' : 'v';
- togglestats[7] = curconfig[Style].val.i ? 'M' : 'm';
- togglestats[8] = curconfig[FrameFlattening].val.i ? 'F' : 'f';
- togglestats[9] = curconfig[Certificate].val.i ? 'X' : 'x';
- togglestats[10] = curconfig[StrictTLS].val.i ? 'T' : 't';
- togglestats[11] = '\0';
-}
-
-void
-getpagestats(Client *c)
-{
- if (c->https)
- pagestats[0] = (c->tlserr || c->insecure) ? 'U' : 'T';
- else
- pagestats[0] = '-';
- pagestats[1] = '\0';
-}
-
-WebKitCookieAcceptPolicy
-cookiepolicy_get(void)
-{
- switch (((char *)curconfig[CookiePolicies].val.v)[cookiepolicy]) {
- case 'a':
- return WEBKIT_COOKIE_POLICY_ACCEPT_NEVER;
- case '@':
- return WEBKIT_COOKIE_POLICY_ACCEPT_NO_THIRD_PARTY;
- default: /* fallthrough */
- case 'A':
- return WEBKIT_COOKIE_POLICY_ACCEPT_ALWAYS;
- }
-}
-
-char
-cookiepolicy_set(const WebKitCookieAcceptPolicy p)
-{
- switch (p) {
- case WEBKIT_COOKIE_POLICY_ACCEPT_NEVER:
- return 'a';
- case WEBKIT_COOKIE_POLICY_ACCEPT_NO_THIRD_PARTY:
- return '@';
- default: /* fallthrough */
- case WEBKIT_COOKIE_POLICY_ACCEPT_ALWAYS:
- return 'A';
- }
-}
-
-void
-seturiparameters(Client *c, const char *uri, ParamName *params)
-{
- Parameter *config, *uriconfig = NULL;
- int i, p;
-
- for (i = 0; i < LENGTH(uriparams); ++i) {
- if (uriparams[i].uri &&
- !regexec(&(uriparams[i].re), uri, 0, NULL, 0)) {
- uriconfig = uriparams[i].config;
- break;
- }
- }
-
- curconfig = uriconfig ? uriconfig : defconfig;
-
- for (i = 0; (p = params[i]) != ParameterLast; ++i) {
- switch(p) {
- default: /* FALLTHROUGH */
- if (!(defconfig[p].prio < curconfig[p].prio ||
- defconfig[p].prio < modparams[p]))
- continue;
- case Certificate:
- case CookiePolicies:
- case Style:
- setparameter(c, 0, p, &curconfig[p].val);
- }
- }
-}
-
-void
-setparameter(Client *c, int refresh, ParamName p, const Arg *a)
-{
- GdkRGBA bgcolor = { 0 };
- WebKitSettings *s = webkit_web_view_get_settings(c->view);
-
- modparams[p] = curconfig[p].prio;
-
- switch (p) {
- case AcceleratedCanvas:
- webkit_settings_set_enable_accelerated_2d_canvas(s, a->i);
- break;
- case AccessMicrophone:
- return; /* do nothing */
- case AccessWebcam:
- return; /* do nothing */
- case CaretBrowsing:
- webkit_settings_set_enable_caret_browsing(s, a->i);
- refresh = 0;
- break;
- case Certificate:
- if (a->i)
- setcert(c, geturi(c));
- return; /* do not update */
- case CookiePolicies:
- webkit_cookie_manager_set_accept_policy(
- webkit_web_context_get_cookie_manager(
- webkit_web_view_get_context(c->view)),
- cookiepolicy_get());
- refresh = 0;
- break;
- case DiskCache:
- webkit_web_context_set_cache_model(
- webkit_web_view_get_context(c->view), a->i ?
- WEBKIT_CACHE_MODEL_WEB_BROWSER :
- WEBKIT_CACHE_MODEL_DOCUMENT_VIEWER);
- return; /* do not update */
- case DefaultCharset:
- webkit_settings_set_default_charset(s, a->v);
- return; /* do not update */
- case DNSPrefetch:
- webkit_settings_set_enable_dns_prefetching(s, a->i);
- return; /* do not update */
- case FileURLsCrossAccess:
- webkit_settings_set_allow_file_access_from_file_urls(s, a->i);
- webkit_settings_set_allow_universal_access_from_file_urls(s, a->i);
- return; /* do not update */
- case FontSize:
- webkit_settings_set_default_font_size(s, a->i);
- return; /* do not update */
- case FrameFlattening:
- webkit_settings_set_enable_frame_flattening(s, a->i);
- break;
- case Geolocation:
- refresh = 0;
- break;
- case HideBackground:
- if (a->i)
- webkit_web_view_set_background_color(c->view, &bgcolor);
- return; /* do not update */
- case Inspector:
- webkit_settings_set_enable_developer_extras(s, a->i);
- return; /* do not update */
- case Java:
- webkit_settings_set_enable_java(s, a->i);
- return; /* do not update */
- case JavaScript:
- webkit_settings_set_enable_javascript(s, a->i);
- break;
- case KioskMode:
- return; /* do nothing */
- case LoadImages:
- webkit_settings_set_auto_load_images(s, a->i);
- break;
- case MediaManualPlay:
- webkit_settings_set_media_playback_requires_user_gesture(s, a->i);
- break;
- case Plugins:
- webkit_settings_set_enable_plugins(s, a->i);
- break;
- case PreferredLanguages:
- return; /* do nothing */
- case RunInFullscreen:
- return; /* do nothing */
- case ScrollBars:
- /* Disabled until we write some WebKitWebExtension for
- * manipulating the DOM directly.
- enablescrollbars = !enablescrollbars;
- evalscript(c, "document.documentElement.style.overflow = '%s'",
- enablescrollbars ? "auto" : "hidden");
- */
- return; /* do not update */
- case ShowIndicators:
- break;
- case SmoothScrolling:
- webkit_settings_set_enable_smooth_scrolling(s, a->i);
- return; /* do not update */
- case SiteQuirks:
- webkit_settings_set_enable_site_specific_quirks(s, a->i);
- break;
- case SpellChecking:
- webkit_web_context_set_spell_checking_enabled(
- webkit_web_view_get_context(c->view), a->i);
- return; /* do not update */
- case SpellLanguages:
- return; /* do nothing */
- case StrictTLS:
- webkit_web_context_set_tls_errors_policy(
- webkit_web_view_get_context(c->view), a->i ?
- WEBKIT_TLS_ERRORS_POLICY_FAIL :
- WEBKIT_TLS_ERRORS_POLICY_IGNORE);
- break;
- case Style:
- webkit_user_content_manager_remove_all_style_sheets(
- webkit_web_view_get_user_content_manager(c->view));
- if (a->i)
- setstyle(c, getstyle(geturi(c)));
- refresh = 0;
- break;
- case WebGL:
- webkit_settings_set_enable_webgl(s, a->i);
- break;
- case ZoomLevel:
- webkit_web_view_set_zoom_level(c->view, a->f);
- return; /* do not update */
- default:
- return; /* do nothing */
- }
-
- updatetitle(c);
- if (refresh)
- reload(c, a);
-}
-
-const char *
-getcert(const char *uri)
-{
- int i;
-
- for (i = 0; i < LENGTH(certs); ++i) {
- if (certs[i].regex &&
- !regexec(&(certs[i].re), uri, 0, NULL, 0))
- return certs[i].file;
- }
-
- return NULL;
-}
-
-void
-setcert(Client *c, const char *uri)
-{
- const char *file = getcert(uri);
- char *host;
- GTlsCertificate *cert;
-
- if (!file)
- return;
-
- if (!(cert = g_tls_certificate_new_from_file(file, NULL))) {
- fprintf(stderr, "Could not read certificate file: %s\n", file);
- return;
- }
-
- if ((uri = strstr(uri, "https://"))) {
- uri += sizeof("https://") - 1;
- host = g_strndup(uri, strchr(uri, '/') - uri);
- webkit_web_context_allow_tls_certificate_for_host(
- webkit_web_view_get_context(c->view), cert, host);
- g_free(host);
- }
-
- g_object_unref(cert);
-
-}
-
-const char *
-getstyle(const char *uri)
-{
- int i;
-
- if (stylefile)
- return stylefile;
-
- for (i = 0; i < LENGTH(styles); ++i) {
- if (styles[i].regex &&
- !regexec(&(styles[i].re), uri, 0, NULL, 0))
- return styles[i].file;
- }
-
- return "";
-}
-
-void
-setstyle(Client *c, const char *file)
-{
- gchar *style;
-
- if (!g_file_get_contents(file, &style, NULL, NULL)) {
- fprintf(stderr, "Could not read style file: %s\n", file);
- return;
- }
-
- webkit_user_content_manager_add_style_sheet(
- webkit_web_view_get_user_content_manager(c->view),
- webkit_user_style_sheet_new(style,
- WEBKIT_USER_CONTENT_INJECT_ALL_FRAMES,
- WEBKIT_USER_STYLE_LEVEL_USER,
- NULL, NULL));
-
- g_free(style);
-}
-
-void
-runscript(Client *c)
-{
- gchar *script;
- gsize l;
-
- if (g_file_get_contents(scriptfile, &script, &l, NULL) && l)
- evalscript(c, "%s", script);
- g_free(script);
-}
-
-void
-evalscript(Client *c, const char *jsstr, ...)
-{
- va_list ap;
- gchar *script;
-
- va_start(ap, jsstr);
- script = g_strdup_vprintf(jsstr, ap);
- va_end(ap);
-
- webkit_web_view_run_javascript(c->view, script, NULL, NULL, NULL);
- g_free(script);
-}
-
-void
-updatewinid(Client *c)
-{
- snprintf(winid, LENGTH(winid), "%lu", c->xid);
-}
-
-void
-handleplumb(Client *c, const char *uri)
-{
- Arg a = (Arg)PLUMB(uri);
- spawn(c, &a);
-}
-
-void
-newwindow(Client *c, const Arg *a, int noembed)
-{
- int i = 0;
- char tmp[64];
- const char *cmd[29], *uri;
- const Arg arg = { .v = cmd };
-
- cmd[i++] = argv0;
- cmd[i++] = "-a";
- cmd[i++] = curconfig[CookiePolicies].val.v;
- cmd[i++] = curconfig[ScrollBars].val.i ? "-B" : "-b";
- if (cookiefile && g_strcmp0(cookiefile, "")) {
- cmd[i++] = "-c";
- cmd[i++] = cookiefile;
- }
- if (stylefile && g_strcmp0(stylefile, "")) {
- cmd[i++] = "-C";
- cmd[i++] = stylefile;
- }
- cmd[i++] = curconfig[DiskCache].val.i ? "-D" : "-d";
- if (embed && !noembed) {
- cmd[i++] = "-e";
- snprintf(tmp, LENGTH(tmp), "%lu", embed);
- cmd[i++] = tmp;
- }
- cmd[i++] = curconfig[RunInFullscreen].val.i ? "-F" : "-f" ;
- cmd[i++] = curconfig[Geolocation].val.i ? "-G" : "-g" ;
- cmd[i++] = curconfig[LoadImages].val.i ? "-I" : "-i" ;
- cmd[i++] = curconfig[KioskMode].val.i ? "-K" : "-k" ;
- cmd[i++] = curconfig[Style].val.i ? "-M" : "-m" ;
- cmd[i++] = curconfig[Inspector].val.i ? "-N" : "-n" ;
- cmd[i++] = curconfig[Plugins].val.i ? "-P" : "-p" ;
- if (scriptfile && g_strcmp0(scriptfile, "")) {
- cmd[i++] = "-r";
- cmd[i++] = scriptfile;
- }
- cmd[i++] = curconfig[JavaScript].val.i ? "-S" : "-s";
- cmd[i++] = curconfig[StrictTLS].val.i ? "-T" : "-t";
- if (fulluseragent && g_strcmp0(fulluseragent, "")) {
- cmd[i++] = "-u";
- cmd[i++] = fulluseragent;
- }
- if (showxid)
- cmd[i++] = "-w";
- cmd[i++] = curconfig[Certificate].val.i ? "-X" : "-x" ;
- /* do not keep zoom level */
- cmd[i++] = "--";
- if ((uri = a->v))
- cmd[i++] = uri;
- cmd[i] = NULL;
-
- spawn(c, &arg);
-}
-
-void
-spawn(Client *c, const Arg *a)
-{
- if (fork() == 0) {
- if (dpy)
- close(ConnectionNumber(dpy));
- close(pipein[0]);
- close(pipeout[1]);
- setsid();
- execvp(((char **)a->v)[0], (char **)a->v);
- fprintf(stderr, "%s: execvp %s", argv0, ((char **)a->v)[0]);
- perror(" failed");
- exit(1);
- }
-}
-
-void
-destroyclient(Client *c)
-{
- Client *p;
-
- webkit_web_view_stop_loading(c->view);
- /* Not needed, has already been called
- gtk_widget_destroy(c->win);
- */
-
- for (p = clients; p && p->next != c; p = p->next)
- ;
- if (p)
- p->next = c->next;
- else
- clients = c->next;
- free(c);
-}
-
-void
-cleanup(void)
-{
- while (clients)
- destroyclient(clients);
-
- close(pipein[0]);
- close(pipeout[1]);
- g_free(cookiefile);
- g_free(scriptfile);
- g_free(stylefile);
- g_free(cachedir);
- XCloseDisplay(dpy);
-}
-
-WebKitWebView *
-newview(Client *c, WebKitWebView *rv)
-{
- WebKitWebView *v;
- WebKitSettings *settings;
- WebKitWebContext *context;
- WebKitCookieManager *cookiemanager;
- WebKitUserContentManager *contentmanager;
-
- /* Webview */
- if (rv) {
- v = WEBKIT_WEB_VIEW(webkit_web_view_new_with_related_view(rv));
- } else {
- settings = webkit_settings_new_with_settings(
- "allow-file-access-from-file-urls", curconfig[FileURLsCrossAccess].val.i,
- "allow-universal-access-from-file-urls", curconfig[FileURLsCrossAccess].val.i,
- "auto-load-images", curconfig[LoadImages].val.i,
- "default-charset", curconfig[DefaultCharset].val.v,
- "default-font-size", curconfig[FontSize].val.i,
- "enable-caret-browsing", curconfig[CaretBrowsing].val.i,
- "enable-developer-extras", curconfig[Inspector].val.i,
- "enable-dns-prefetching", curconfig[DNSPrefetch].val.i,
- "enable-frame-flattening", curconfig[FrameFlattening].val.i,
- "enable-html5-database", curconfig[DiskCache].val.i,
- "enable-html5-local-storage", curconfig[DiskCache].val.i,
- "enable-java", curconfig[Java].val.i,
- "enable-javascript", curconfig[JavaScript].val.i,
- "enable-plugins", curconfig[Plugins].val.i,
- "enable-accelerated-2d-canvas", curconfig[AcceleratedCanvas].val.i,
- "enable-site-specific-quirks", curconfig[SiteQuirks].val.i,
- "enable-smooth-scrolling", curconfig[SmoothScrolling].val.i,
- "enable-webgl", curconfig[WebGL].val.i,
- "media-playback-requires-user-gesture", curconfig[MediaManualPlay].val.i,
- NULL);
-/* For more interesting settings, have a look at
- * http://webkitgtk.org/reference/webkit2gtk/stable/WebKitSettings.html */
-
- if (strcmp(fulluseragent, "")) {
- webkit_settings_set_user_agent(settings, fulluseragent);
- } else if (surfuseragent) {
- webkit_settings_set_user_agent_with_application_details(
- settings, "Surf", VERSION);
- }
- useragent = webkit_settings_get_user_agent(settings);
-
- contentmanager = webkit_user_content_manager_new();
-
- context = webkit_web_context_new_with_website_data_manager(
- webkit_website_data_manager_new(
- "base-cache-directory", cachedir,
- "base-data-directory", cachedir,
- NULL));
-
- cookiemanager = webkit_web_context_get_cookie_manager(context);
-
- /* rendering process model, can be a shared unique one
- * or one for each view */
- webkit_web_context_set_process_model(context,
- WEBKIT_PROCESS_MODEL_MULTIPLE_SECONDARY_PROCESSES);
- /* TLS */
- webkit_web_context_set_tls_errors_policy(context,
- curconfig[StrictTLS].val.i ? WEBKIT_TLS_ERRORS_POLICY_FAIL :
- WEBKIT_TLS_ERRORS_POLICY_IGNORE);
- /* disk cache */
- webkit_web_context_set_cache_model(context,
- curconfig[DiskCache].val.i ? WEBKIT_CACHE_MODEL_WEB_BROWSER :
- WEBKIT_CACHE_MODEL_DOCUMENT_VIEWER);
-
- /* Currently only works with text file to be compatible with curl */
- webkit_cookie_manager_set_persistent_storage(cookiemanager,
- cookiefile, WEBKIT_COOKIE_PERSISTENT_STORAGE_TEXT);
- /* cookie policy */
- webkit_cookie_manager_set_accept_policy(cookiemanager,
- cookiepolicy_get());
- /* languages */
- webkit_web_context_set_preferred_languages(context,
- curconfig[PreferredLanguages].val.v);
- webkit_web_context_set_spell_checking_languages(context,
- curconfig[SpellLanguages].val.v);
- webkit_web_context_set_spell_checking_enabled(context,
- curconfig[SpellChecking].val.i);
-
- g_signal_connect(G_OBJECT(context), "download-started",
- G_CALLBACK(downloadstarted), c);
- g_signal_connect(G_OBJECT(context), "initialize-web-extensions",
- G_CALLBACK(initwebextensions), c);
-
- v = g_object_new(WEBKIT_TYPE_WEB_VIEW,
- "settings", settings,
- "user-content-manager", contentmanager,
- "web-context", context,
- NULL);
- }
-
- g_signal_connect(G_OBJECT(v), "notify::estimated-load-progress",
- G_CALLBACK(progresschanged), c);
- g_signal_connect(G_OBJECT(v), "notify::title",
- G_CALLBACK(titlechanged), c);
- g_signal_connect(G_OBJECT(v), "button-release-event",
- G_CALLBACK(buttonreleased), c);
- g_signal_connect(G_OBJECT(v), "close",
- G_CALLBACK(closeview), c);
- g_signal_connect(G_OBJECT(v), "create",
- G_CALLBACK(createview), c);
- g_signal_connect(G_OBJECT(v), "decide-policy",
- G_CALLBACK(decidepolicy), c);
- g_signal_connect(G_OBJECT(v), "insecure-content-detected",
- G_CALLBACK(insecurecontent), c);
- g_signal_connect(G_OBJECT(v), "load-failed-with-tls-errors",
- G_CALLBACK(loadfailedtls), c);
- g_signal_connect(G_OBJECT(v), "load-changed",
- G_CALLBACK(loadchanged), c);
- g_signal_connect(G_OBJECT(v), "mouse-target-changed",
- G_CALLBACK(mousetargetchanged), c);
- g_signal_connect(G_OBJECT(v), "permission-request",
- G_CALLBACK(permissionrequested), c);
- g_signal_connect(G_OBJECT(v), "ready-to-show",
- G_CALLBACK(showview), c);
- g_signal_connect(G_OBJECT(v), "web-process-terminated",
- G_CALLBACK(webprocessterminated), c);
-
- return v;
-}
-
-static gboolean
-readpipe(GIOChannel *s, GIOCondition ioc, gpointer unused)
-{
- static char msg[MSGBUFSZ], msgsz;
- GError *gerr = NULL;
-
- if (g_io_channel_read_chars(s, msg, sizeof(msg), NULL, &gerr) !=
- G_IO_STATUS_NORMAL) {
- fprintf(stderr, "surf: error reading pipe: %s\n",
- gerr->message);
- g_error_free(gerr);
- return TRUE;
- }
- if ((msgsz = msg[0]) < 3) {
- fprintf(stderr, "surf: message too short: %d\n", msgsz);
- return TRUE;
- }
-
- switch (msg[2]) {
- case 'i':
- close(pipein[1]);
- close(pipeout[0]);
- break;
- }
-
- return TRUE;
-}
-
-void
-initwebextensions(WebKitWebContext *wc, Client *c)
-{
- GVariant *gv;
-
- if (!pipeout[0] || !pipein[1])
- return;
-
- gv = g_variant_new("(ii)", pipeout[0], pipein[1]);
-
- webkit_web_context_set_web_extensions_initialization_user_data(wc, gv);
- webkit_web_context_set_web_extensions_directory(wc, WEBEXTDIR);
-}
-
-GtkWidget *
-createview(WebKitWebView *v, WebKitNavigationAction *a, Client *c)
-{
- Client *n;
-
- switch (webkit_navigation_action_get_navigation_type(a)) {
- case WEBKIT_NAVIGATION_TYPE_OTHER: /* fallthrough */
- /*
- * popup windows of type “other” are almost always triggered
- * by user gesture, so inverse the logic here
- */
-/* instead of this, compare destination uri to mouse-over uri for validating window */
- if (webkit_navigation_action_is_user_gesture(a))
- return NULL;
- case WEBKIT_NAVIGATION_TYPE_LINK_CLICKED: /* fallthrough */
- case WEBKIT_NAVIGATION_TYPE_FORM_SUBMITTED: /* fallthrough */
- case WEBKIT_NAVIGATION_TYPE_BACK_FORWARD: /* fallthrough */
- case WEBKIT_NAVIGATION_TYPE_RELOAD: /* fallthrough */
- case WEBKIT_NAVIGATION_TYPE_FORM_RESUBMITTED:
- n = newclient(c);
- break;
- default:
- return NULL;
- }
-
- return GTK_WIDGET(n->view);
-}
-
-gboolean
-buttonreleased(GtkWidget *w, GdkEvent *e, Client *c)
-{
- WebKitHitTestResultContext element;
- int i;
-
- element = webkit_hit_test_result_get_context(c->mousepos);
-
- for (i = 0; i < LENGTH(buttons); ++i) {
- if (element & buttons[i].target &&
- e->button.button == buttons[i].button &&
- CLEANMASK(e->button.state) == CLEANMASK(buttons[i].mask) &&
- buttons[i].func) {
- buttons[i].func(c, &buttons[i].arg, c->mousepos);
- return buttons[i].stopevent;
- }
- }
-
- return FALSE;
-}
-
-GdkFilterReturn
-processx(GdkXEvent *e, GdkEvent *event, gpointer d)
-{
- Client *c = (Client *)d;
- XPropertyEvent *ev;
- Arg a;
-
- if (((XEvent *)e)->type == PropertyNotify) {
- ev = &((XEvent *)e)->xproperty;
- if (ev->state == PropertyNewValue) {
- if (ev->atom == atoms[AtomFind]) {
- find(c, NULL);
-
- return GDK_FILTER_REMOVE;
- } else if (ev->atom == atoms[AtomGo]) {
- a.v = getatom(c, AtomGo);
- loaduri(c, &a);
-
- return GDK_FILTER_REMOVE;
- }
- }
- }
- return GDK_FILTER_CONTINUE;
-}
-
-gboolean
-winevent(GtkWidget *w, GdkEvent *e, Client *c)
-{
- int i;
-
- switch (e->type) {
- case GDK_ENTER_NOTIFY:
- c->overtitle = c->targeturi;
- updatetitle(c);
- break;
- case GDK_KEY_PRESS:
- if (!curconfig[KioskMode].val.i &&
- !insertmode ||
- CLEANMASK(e->key.state) == (MODKEY|GDK_SHIFT_MASK) ||
- CLEANMASK(e->key.state) == (MODKEY) ||
- gdk_keyval_to_lower(e->key.keyval) == (GDK_KEY_Escape)) {
- for (i = 0; i < LENGTH(keys); ++i) {
- if (gdk_keyval_to_lower(e->key.keyval) ==
- keys[i].keyval &&
- CLEANMASK(e->key.state) == keys[i].mod &&
- keys[i].func) {
- updatewinid(c);
- keys[i].func(c, &(keys[i].arg));
- return TRUE;
- }
- }
- }
- case GDK_LEAVE_NOTIFY:
- c->overtitle = NULL;
- updatetitle(c);
- break;
- case GDK_WINDOW_STATE:
- if (e->window_state.changed_mask ==
- GDK_WINDOW_STATE_FULLSCREEN)
- c->fullscreen = e->window_state.new_window_state &
- GDK_WINDOW_STATE_FULLSCREEN;
- break;
- default:
- break;
- }
-
- return FALSE;
-}
-
-void
-showview(WebKitWebView *v, Client *c)
-{
- GdkRGBA bgcolor = { 0 };
- GdkWindow *gwin;
-
- c->finder = webkit_web_view_get_find_controller(c->view);
- c->inspector = webkit_web_view_get_inspector(c->view);
-
- c->pageid = webkit_web_view_get_page_id(c->view);
- c->win = createwindow(c);
-
- gtk_container_add(GTK_CONTAINER(c->win), GTK_WIDGET(c->view));
- gtk_widget_show_all(c->win);
- gtk_widget_grab_focus(GTK_WIDGET(c->view));
-
- gwin = gtk_widget_get_window(GTK_WIDGET(c->win));
- c->xid = gdk_x11_window_get_xid(gwin);
- updatewinid(c);
- if (showxid) {
- gdk_display_sync(gtk_widget_get_display(c->win));
- puts(winid);
- fflush(stdout);
- }
-
- if (curconfig[HideBackground].val.i)
- webkit_web_view_set_background_color(c->view, &bgcolor);
-
- if (!curconfig[KioskMode].val.i) {
- gdk_window_set_events(gwin, GDK_ALL_EVENTS_MASK);
- gdk_window_add_filter(gwin, processx, c);
- }
-
- if (curconfig[RunInFullscreen].val.i)
- togglefullscreen(c, NULL);
-
- if (curconfig[ZoomLevel].val.f != 1.0)
- webkit_web_view_set_zoom_level(c->view,
- curconfig[ZoomLevel].val.f);
-
- setatom(c, AtomFind, "");
- setatom(c, AtomUri, "about:blank");
-}
-
-GtkWidget *
-createwindow(Client *c)
-{
- char *wmstr;
- GtkWidget *w;
-
- if (embed) {
- w = gtk_plug_new(embed);
- } else {
- w = gtk_window_new(GTK_WINDOW_TOPLEVEL);
-
- wmstr = g_path_get_basename(argv0);
- gtk_window_set_wmclass(GTK_WINDOW(w), wmstr, "Surf");
- g_free(wmstr);
-
- wmstr = g_strdup_printf("%s[%lu]", "Surf", c->pageid);
- gtk_window_set_role(GTK_WINDOW(w), wmstr);
- g_free(wmstr);
-
- gtk_window_set_default_size(GTK_WINDOW(w), winsize[0], winsize[1]);
- }
-
- g_signal_connect(G_OBJECT(w), "destroy",
- G_CALLBACK(destroywin), c);
- g_signal_connect(G_OBJECT(w), "enter-notify-event",
- G_CALLBACK(winevent), c);
- g_signal_connect(G_OBJECT(w), "key-press-event",
- G_CALLBACK(winevent), c);
- g_signal_connect(G_OBJECT(w), "leave-notify-event",
- G_CALLBACK(winevent), c);
- g_signal_connect(G_OBJECT(w), "window-state-event",
- G_CALLBACK(winevent), c);
-
- return w;
-}
-
-gboolean
-loadfailedtls(WebKitWebView *v, gchar *uri, GTlsCertificate *cert,
- GTlsCertificateFlags err, Client *c)
-{
- GString *errmsg = g_string_new(NULL);
- gchar *html, *pem;
-
- c->failedcert = g_object_ref(cert);
- c->tlserr = err;
- c->errorpage = 1;
-
- if (err & G_TLS_CERTIFICATE_UNKNOWN_CA)
- g_string_append(errmsg,
- "The signing certificate authority is not known.<br>");
- if (err & G_TLS_CERTIFICATE_BAD_IDENTITY)
- g_string_append(errmsg,
- "The certificate does not match the expected identity "
- "of the site that it was retrieved from.<br>");
- if (err & G_TLS_CERTIFICATE_NOT_ACTIVATED)
- g_string_append(errmsg,
- "The certificate's activation time "
- "is still in the future.<br>");
- if (err & G_TLS_CERTIFICATE_EXPIRED)
- g_string_append(errmsg, "The certificate has expired.<br>");
- if (err & G_TLS_CERTIFICATE_REVOKED)
- g_string_append(errmsg,
- "The certificate has been revoked according to "
- "the GTlsConnection's certificate revocation list.<br>");
- if (err & G_TLS_CERTIFICATE_INSECURE)
- g_string_append(errmsg,
- "The certificate's algorithm is considered insecure.<br>");
- if (err & G_TLS_CERTIFICATE_GENERIC_ERROR)
- g_string_append(errmsg,
- "Some error occurred validating the certificate.<br>");
-
- g_object_get(cert, "certificate-pem", &pem, NULL);
- html = g_strdup_printf("<p>Could not validate TLS for “%s”<br>%s</p>"
- "<p>You can inspect the following certificate "
- "with Ctrl-t (default keybinding).</p>"
- "<p><pre>%s</pre></p>", uri, errmsg->str, pem);
- g_free(pem);
- g_string_free(errmsg, TRUE);
-
- webkit_web_view_load_alternate_html(c->view, html, uri, NULL);
- g_free(html);
-
- return TRUE;
-}
-
-void
-loadchanged(WebKitWebView *v, WebKitLoadEvent e, Client *c)
-{
- const char *uri = geturi(c);
-
- switch (e) {
- case WEBKIT_LOAD_STARTED:
- setatom(c, AtomUri, uri);
- c->title = uri;
- c->https = c->insecure = 0;
- seturiparameters(c, uri, loadtransient);
- if (c->errorpage)
- c->errorpage = 0;
- else
- g_clear_object(&c->failedcert);
- break;
- case WEBKIT_LOAD_REDIRECTED:
- setatom(c, AtomUri, uri);
- c->title = uri;
- seturiparameters(c, uri, loadtransient);
- break;
- case WEBKIT_LOAD_COMMITTED:
- seturiparameters(c, uri, loadcommitted);
- c->https = webkit_web_view_get_tls_info(c->view, &c->cert,
- &c->tlserr);
- break;
- case WEBKIT_LOAD_FINISHED:
- seturiparameters(c, uri, loadfinished);
- /* Disabled until we write some WebKitWebExtension for
- * manipulating the DOM directly.
- evalscript(c, "document.documentElement.style.overflow = '%s'",
- enablescrollbars ? "auto" : "hidden");
- */
- runscript(c);
- break;
- }
- updatetitle(c);
-}
-
-void
-progresschanged(WebKitWebView *v, GParamSpec *ps, Client *c)
-{
- c->progress = webkit_web_view_get_estimated_load_progress(c->view) *
- 100;
- updatetitle(c);
-}
-
-void
-titlechanged(WebKitWebView *view, GParamSpec *ps, Client *c)
-{
- c->title = webkit_web_view_get_title(c->view);
- updatetitle(c);
-}
-
-void
-mousetargetchanged(WebKitWebView *v, WebKitHitTestResult *h, guint modifiers,
- Client *c)
-{
- WebKitHitTestResultContext hc = webkit_hit_test_result_get_context(h);
-
- /* Keep the hit test to know where is the pointer on the next click */
- c->mousepos = h;
-
- if (hc & OnLink)
- c->targeturi = webkit_hit_test_result_get_link_uri(h);
- else if (hc & OnImg)
- c->targeturi = webkit_hit_test_result_get_image_uri(h);
- else if (hc & OnMedia)
- c->targeturi = webkit_hit_test_result_get_media_uri(h);
- else
- c->targeturi = NULL;
-
- c->overtitle = c->targeturi;
- updatetitle(c);
-}
-
-gboolean
-permissionrequested(WebKitWebView *v, WebKitPermissionRequest *r, Client *c)
-{
- ParamName param = ParameterLast;
-
- if (WEBKIT_IS_GEOLOCATION_PERMISSION_REQUEST(r)) {
- param = Geolocation;
- } else if (WEBKIT_IS_USER_MEDIA_PERMISSION_REQUEST(r)) {
- if (webkit_user_media_permission_is_for_audio_device(
- WEBKIT_USER_MEDIA_PERMISSION_REQUEST(r)))
- param = AccessMicrophone;
- else if (webkit_user_media_permission_is_for_video_device(
- WEBKIT_USER_MEDIA_PERMISSION_REQUEST(r)))
- param = AccessWebcam;
- } else {
- return FALSE;
- }
-
- if (curconfig[param].val.i)
- webkit_permission_request_allow(r);
- else
- webkit_permission_request_deny(r);
-
- return TRUE;
-}
-
-gboolean
-decidepolicy(WebKitWebView *v, WebKitPolicyDecision *d,
- WebKitPolicyDecisionType dt, Client *c)
-{
- switch (dt) {
- case WEBKIT_POLICY_DECISION_TYPE_NAVIGATION_ACTION:
- decidenavigation(d, c);
- break;
- case WEBKIT_POLICY_DECISION_TYPE_NEW_WINDOW_ACTION:
- decidenewwindow(d, c);
- break;
- case WEBKIT_POLICY_DECISION_TYPE_RESPONSE:
- decideresource(d, c);
- break;
- default:
- webkit_policy_decision_ignore(d);
- break;
- }
- return TRUE;
-}
-
-void
-decidenavigation(WebKitPolicyDecision *d, Client *c)
-{
- WebKitNavigationAction *a =
- webkit_navigation_policy_decision_get_navigation_action(
- WEBKIT_NAVIGATION_POLICY_DECISION(d));
-
- switch (webkit_navigation_action_get_navigation_type(a)) {
- case WEBKIT_NAVIGATION_TYPE_LINK_CLICKED: /* fallthrough */
- case WEBKIT_NAVIGATION_TYPE_FORM_SUBMITTED: /* fallthrough */
- case WEBKIT_NAVIGATION_TYPE_BACK_FORWARD: /* fallthrough */
- case WEBKIT_NAVIGATION_TYPE_RELOAD: /* fallthrough */
- case WEBKIT_NAVIGATION_TYPE_FORM_RESUBMITTED: /* fallthrough */
- case WEBKIT_NAVIGATION_TYPE_OTHER: /* fallthrough */
- default:
- /* Do not navigate to links with a "_blank" target (popup) */
- if (webkit_navigation_policy_decision_get_frame_name(
- WEBKIT_NAVIGATION_POLICY_DECISION(d))) {
- webkit_policy_decision_ignore(d);
- } else {
- /* Filter out navigation to different domain ? */
- /* get action→urirequest, copy and load in new window+view
- * on Ctrl+Click ? */
- webkit_policy_decision_use(d);
- }
- break;
- }
-}
-
-void
-decidenewwindow(WebKitPolicyDecision *d, Client *c)
-{
- Arg arg;
- WebKitNavigationAction *a =
- webkit_navigation_policy_decision_get_navigation_action(
- WEBKIT_NAVIGATION_POLICY_DECISION(d));
-
-
- switch (webkit_navigation_action_get_navigation_type(a)) {
- case WEBKIT_NAVIGATION_TYPE_LINK_CLICKED: /* fallthrough */
- case WEBKIT_NAVIGATION_TYPE_FORM_SUBMITTED: /* fallthrough */
- case WEBKIT_NAVIGATION_TYPE_BACK_FORWARD: /* fallthrough */
- case WEBKIT_NAVIGATION_TYPE_RELOAD: /* fallthrough */
- case WEBKIT_NAVIGATION_TYPE_FORM_RESUBMITTED:
- /* Filter domains here */
-/* If the value of “mouse-button” is not 0, then the navigation was triggered by a mouse event.
- * test for link clicked but no button ? */
- arg.v = webkit_uri_request_get_uri(
- webkit_navigation_action_get_request(a));
- newwindow(c, &arg, 0);
- break;
- case WEBKIT_NAVIGATION_TYPE_OTHER: /* fallthrough */
- default:
- break;
- }
-
- webkit_policy_decision_ignore(d);
-}
-
-void
-decideresource(WebKitPolicyDecision *d, Client *c)
-{
- int i, isascii = 1;
- WebKitResponsePolicyDecision *r = WEBKIT_RESPONSE_POLICY_DECISION(d);
- WebKitURIResponse *res =
- webkit_response_policy_decision_get_response(r);
- const gchar *uri = webkit_uri_response_get_uri(res);
-
- if (g_str_has_suffix(uri, "/favicon.ico")) {
- webkit_policy_decision_ignore(d);
- return;
- }
-
- if (!g_str_has_prefix(uri, "http://")
- && !g_str_has_prefix(uri, "https://")
- && !g_str_has_prefix(uri, "about:")
- && !g_str_has_prefix(uri, "file://")
- && !g_str_has_prefix(uri, "data:")
- && !g_str_has_prefix(uri, "blob:")
- && strlen(uri) > 0) {
- for (i = 0; i < strlen(uri); i++) {
- if (!g_ascii_isprint(uri[i])) {
- isascii = 0;
- break;
- }
- }
- if (isascii) {
- handleplumb(c, uri);
- webkit_policy_decision_ignore(d);
- return;
- }
- }
-
- if (webkit_response_policy_decision_is_mime_type_supported(r)) {
- webkit_policy_decision_use(d);
- } else {
- webkit_policy_decision_ignore(d);
- download(c, res);
- }
-}
-
-void
-insecurecontent(WebKitWebView *v, WebKitInsecureContentEvent e, Client *c)
-{
- c->insecure = 1;
-}
-
-void
-downloadstarted(WebKitWebContext *wc, WebKitDownload *d, Client *c)
-{
- g_signal_connect(G_OBJECT(d), "notify::response",
- G_CALLBACK(responsereceived), c);
-}
-
-void
-responsereceived(WebKitDownload *d, GParamSpec *ps, Client *c)
-{
- download(c, webkit_download_get_response(d));
- webkit_download_cancel(d);
-}
-
-void
-download(Client *c, WebKitURIResponse *r)
-{
- Arg a = (Arg)DOWNLOAD(webkit_uri_response_get_uri(r), geturi(c));
- spawn(c, &a);
-}
-
-void
-webprocessterminated(WebKitWebView *v, WebKitWebProcessTerminationReason r,
- Client *c)
-{
- fprintf(stderr, "web process terminated: %s\n",
- r == WEBKIT_WEB_PROCESS_CRASHED ? "crashed" : "no memory");
- closeview(v, c);
-}
-
-void
-closeview(WebKitWebView *v, Client *c)
-{
- gtk_widget_destroy(c->win);
-}
-
-void
-destroywin(GtkWidget* w, Client *c)
-{
- destroyclient(c);
- if (!clients)
- gtk_main_quit();
-}
-
-gchar *
-parseuri(const gchar *uri) {
- guint i;
-
- for (i = 0; i < LENGTH(searchengines); i++) {
- if (searchengines[i].token == NULL || searchengines[i].uri == NULL ||
- *(uri + strlen(searchengines[i].token)) != ' ')
- continue;
- if (g_str_has_prefix(uri, searchengines[i].token))
- return g_strdup_printf(searchengines[i].uri,
- uri + strlen(searchengines[i].token) + 1);
- }
-
- return g_strdup_printf("%s%s", searchengine, uri);
-}
-
-void
-pasteuri(GtkClipboard *clipboard, const char *text, gpointer d)
-{
- Arg a = {.v = text };
- if (text)
- loaduri((Client *) d, &a);
-}
-
-void
-reload(Client *c, const Arg *a)
-{
- if (a->i)
- webkit_web_view_reload_bypass_cache(c->view);
- else
- webkit_web_view_reload(c->view);
-}
-
-void
-print(Client *c, const Arg *a)
-{
- webkit_print_operation_run_dialog(webkit_print_operation_new(c->view),
- GTK_WINDOW(c->win));
-}
-
-void
-showcert(Client *c, const Arg *a)
-{
- GTlsCertificate *cert = c->failedcert ? c->failedcert : c->cert;
- GcrCertificate *gcrt;
- GByteArray *crt;
- GtkWidget *win;
- GcrCertificateWidget *wcert;
-
- if (!cert)
- return;
-
- g_object_get(cert, "certificate", &crt, NULL);
- gcrt = gcr_simple_certificate_new(crt->data, crt->len);
- g_byte_array_unref(crt);
-
- win = gtk_window_new(GTK_WINDOW_TOPLEVEL);
- wcert = gcr_certificate_widget_new(gcrt);
- g_object_unref(gcrt);
-
- gtk_container_add(GTK_CONTAINER(win), GTK_WIDGET(wcert));
- gtk_widget_show_all(win);
-}
-
-void
-clipboard(Client *c, const Arg *a)
-{
- if (a->i) { /* load clipboard uri */
- gtk_clipboard_request_text(gtk_clipboard_get(
- GDK_SELECTION_PRIMARY),
- pasteuri, c);
- } else { /* copy uri */
- gtk_clipboard_set_text(gtk_clipboard_get(
- GDK_SELECTION_PRIMARY), c->targeturi
- ? c->targeturi : geturi(c), -1);
- }
-}
-
-void
-zoom(Client *c, const Arg *a)
-{
- if (a->i > 0)
- webkit_web_view_set_zoom_level(c->view,
- curconfig[ZoomLevel].val.f + 0.1);
- else if (a->i < 0)
- webkit_web_view_set_zoom_level(c->view,
- curconfig[ZoomLevel].val.f - 0.1);
- else
- webkit_web_view_set_zoom_level(c->view, 1.0);
-
- curconfig[ZoomLevel].val.f = webkit_web_view_get_zoom_level(c->view);
-}
-
-static void
-msgext(Client *c, char type, const Arg *a)
-{
- static char msg[MSGBUFSZ];
- int ret;
-
- if ((ret = snprintf(msg, sizeof(msg), "%c%c%c%c",
- 4, c->pageid, type, a->i))
- >= sizeof(msg)) {
- fprintf(stderr, "surf: message too long: %d\n", ret);
- return;
- }
-
- if (pipeout[1] && write(pipeout[1], msg, sizeof(msg)) < 0)
- fprintf(stderr, "surf: error sending: %.*s\n", ret-2, msg+2);
-}
-
-void
-scrollv(Client *c, const Arg *a)
-{
- msgext(c, 'v', a);
-}
-
-void
-scrollh(Client *c, const Arg *a)
-{
- msgext(c, 'h', a);
-}
-
-void
-navigate(Client *c, const Arg *a)
-{
- if (a->i < 0)
- webkit_web_view_go_back(c->view);
- else if (a->i > 0)
- webkit_web_view_go_forward(c->view);
-}
-
-void
-stop(Client *c, const Arg *a)
-{
- webkit_web_view_stop_loading(c->view);
-}
-
-void
-toggle(Client *c, const Arg *a)
-{
- curconfig[a->i].val.i ^= 1;
- setparameter(c, 1, (ParamName)a->i, &curconfig[a->i].val);
-}
-
-void
-togglefullscreen(Client *c, const Arg *a)
-{
- /* toggling value is handled in winevent() */
- if (c->fullscreen)
- gtk_window_unfullscreen(GTK_WINDOW(c->win));
- else
- gtk_window_fullscreen(GTK_WINDOW(c->win));
-}
-
-void
-togglecookiepolicy(Client *c, const Arg *a)
-{
- ++cookiepolicy;
- cookiepolicy %= strlen(curconfig[CookiePolicies].val.v);
-
- setparameter(c, 0, CookiePolicies, NULL);
-}
-
-void
-toggleinspector(Client *c, const Arg *a)
-{
- if (webkit_web_inspector_is_attached(c->inspector))
- webkit_web_inspector_close(c->inspector);
- else if (curconfig[Inspector].val.i)
- webkit_web_inspector_show(c->inspector);
-}
-
-void
-find(Client *c, const Arg *a)
-{
- const char *s, *f;
-
- if (a && a->i) {
- if (a->i > 0)
- webkit_find_controller_search_next(c->finder);
- else
- webkit_find_controller_search_previous(c->finder);
- } else {
- s = getatom(c, AtomFind);
- f = webkit_find_controller_get_search_text(c->finder);
-
- if (g_strcmp0(f, s) == 0) /* reset search */
- webkit_find_controller_search(c->finder, "", findopts,
- G_MAXUINT);
-
- webkit_find_controller_search(c->finder, s, findopts,
- G_MAXUINT);
-
- if (strcmp(s, "") == 0)
- webkit_find_controller_search_finish(c->finder);
- }
-}
-
-void
-insert(Client *c, const Arg *a)
-{
- insertmode = (a->i);
-}
-
-void
-clicknavigate(Client *c, const Arg *a, WebKitHitTestResult *h)
-{
- navigate(c, a);
-}
-
-void
-clicknewwindow(Client *c, const Arg *a, WebKitHitTestResult *h)
-{
- Arg arg;
-
- arg.v = webkit_hit_test_result_get_link_uri(h);
- newwindow(c, &arg, a->i);
-}
-
-void
-clickexternplayer(Client *c, const Arg *a, WebKitHitTestResult *h)
-{
- Arg arg;
-
- arg = (Arg)VIDEOPLAY(webkit_hit_test_result_get_media_uri(h));
- spawn(c, &arg);
-}
-
-int
-main(int argc, char *argv[])
-{
- Arg arg;
- Client *c;
-
- memset(&arg, 0, sizeof(arg));
-
- /* command line args */
- ARGBEGIN {
- case 'a':
- defconfig[CookiePolicies].val.v = EARGF(usage());
- defconfig[CookiePolicies].prio = 2;
- break;
- case 'b':
- defconfig[ScrollBars].val.i = 0;
- defconfig[ScrollBars].prio = 2;
- break;
- case 'B':
- defconfig[ScrollBars].val.i = 1;
- defconfig[ScrollBars].prio = 2;
- break;
- case 'c':
- cookiefile = EARGF(usage());
- break;
- case 'C':
- stylefile = EARGF(usage());
- break;
- case 'd':
- defconfig[DiskCache].val.i = 0;
- defconfig[DiskCache].prio = 2;
- break;
- case 'D':
- defconfig[DiskCache].val.i = 1;
- defconfig[DiskCache].prio = 2;
- break;
- case 'e':
- embed = strtol(EARGF(usage()), NULL, 0);
- break;
- case 'f':
- defconfig[RunInFullscreen].val.i = 0;
- defconfig[RunInFullscreen].prio = 2;
- break;
- case 'F':
- defconfig[RunInFullscreen].val.i = 1;
- defconfig[RunInFullscreen].prio = 2;
- break;
- case 'g':
- defconfig[Geolocation].val.i = 0;
- defconfig[Geolocation].prio = 2;
- break;
- case 'G':
- defconfig[Geolocation].val.i = 1;
- defconfig[Geolocation].prio = 2;
- break;
- case 'i':
- defconfig[LoadImages].val.i = 0;
- defconfig[LoadImages].prio = 2;
- break;
- case 'I':
- defconfig[LoadImages].val.i = 1;
- defconfig[LoadImages].prio = 2;
- break;
- case 'k':
- defconfig[KioskMode].val.i = 0;
- defconfig[KioskMode].prio = 2;
- break;
- case 'K':
- defconfig[KioskMode].val.i = 1;
- defconfig[KioskMode].prio = 2;
- break;
- case 'm':
- defconfig[Style].val.i = 0;
- defconfig[Style].prio = 2;
- break;
- case 'M':
- defconfig[Style].val.i = 1;
- defconfig[Style].prio = 2;
- break;
- case 'n':
- defconfig[Inspector].val.i = 0;
- defconfig[Inspector].prio = 2;
- break;
- case 'N':
- defconfig[Inspector].val.i = 1;
- defconfig[Inspector].prio = 2;
- break;
- case 'p':
- defconfig[Plugins].val.i = 0;
- defconfig[Plugins].prio = 2;
- break;
- case 'P':
- defconfig[Plugins].val.i = 1;
- defconfig[Plugins].prio = 2;
- break;
- case 'r':
- scriptfile = EARGF(usage());
- break;
- case 's':
- defconfig[JavaScript].val.i = 0;
- defconfig[JavaScript].prio = 2;
- break;
- case 'S':
- defconfig[JavaScript].val.i = 1;
- defconfig[JavaScript].prio = 2;
- break;
- case 't':
- defconfig[StrictTLS].val.i = 0;
- defconfig[StrictTLS].prio = 2;
- break;
- case 'T':
- defconfig[StrictTLS].val.i = 1;
- defconfig[StrictTLS].prio = 2;
- break;
- case 'u':
- fulluseragent = EARGF(usage());
- break;
- case 'v':
- die("surf-"VERSION", see LICENSE for © details\n");
- case 'w':
- showxid = 1;
- break;
- case 'x':
- defconfig[Certificate].val.i = 0;
- defconfig[Certificate].prio = 2;
- break;
- case 'X':
- defconfig[Certificate].val.i = 1;
- defconfig[Certificate].prio = 2;
- break;
- case 'z':
- defconfig[ZoomLevel].val.f = strtof(EARGF(usage()), NULL);
- defconfig[ZoomLevel].prio = 2;
- break;
- default:
- usage();
- } ARGEND;
- if (argc > 0)
- arg.v = argv[0];
- else
- arg.v = "about:blank";
-
- setup();
- c = newclient(NULL);
- showview(NULL, c);
-
- loaduri(c, &arg);
- updatetitle(c);
-
- gtk_main();
- cleanup();
-
- return 0;
-}