This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Google Search Suggestions for "When will <country>" (2016-10-23) | |
[Afghanistan] | |
when will afghanistan war end | |
when will afghanistan be safe | |
when will afghanistan be over | |
when will the afghanistan war end yahoo | |
when will britain leave afghanistan | |
when will nato leave afghanistan | |
when will isaf leave afghanistan |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# $Id$ | |
# Maintainer: Felix Yan <[email protected]> | |
# Contributor: Techlive Zheng <techlivezheng at gmail dot com> | |
# Contributor: peace4all <markspost at rocketmail dot com> | |
pkgname=dnscrypt-proxy | |
pkgver=1.7.0 | |
pkgrel=1 | |
pkgdesc="A tool for securing communications between a client and a DNS resolver" | |
arch=('i686' 'x86_64') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: Lukas Fleischer <[email protected]> | |
# Contributor: Juergen Hoetzel <[email protected]> | |
# Contributor: basilburn (basilburn), Paul Bredbury (brebs) | |
pkgname=privoxy | |
pkgver=3.0.26 | |
pkgrel=1 | |
pkgdesc='A web proxy with advanced filtering capabilities.' | |
arch=('i686' 'x86_64') | |
url='https://www.privoxy.org' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From: lolilolicon <[email protected]> | |
Date: Sun, 10 Aug 2014 15:40:18 +0000 | |
Subject: [PATCH] win_open: refactor geometry & gravity calculation | |
When either x or y coordinate is not specified, default to place window | |
at the center of the screen in that dimension. Assign window gravity | |
according to the dimension and value of user specified coordinate(s). | |
It's worth noting that NorthGravity and SouthGravity are impossible to | |
be achieved via user specified geometry, since it's impossible to |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*background: #FFFFFF | |
*foreground: #595959 | |
*cursorColor: #1D9AE4 | |
*color0: #CFCDAD | |
*color1: #E34949 | |
*color2: #36995A | |
*color3: #E38736 | |
*color4: #4181F0 | |
*color5: #D13CD6 | |
*color6: #3C8D8F |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff -r 183cedbebe52 config.def.h | |
--- a/config.def.h Fri Nov 04 20:02:35 2011 +0100 | |
+++ b/config.def.h Fri Nov 11 18:13:10 2011 +0800 | |
@@ -32,6 +32,9 @@ | |
{ "[]=", tile }, /* first entry is default */ | |
{ "><>", NULL }, /* no layout function means floating behavior */ | |
{ "[M]", monocle }, | |
+ { "TTT", bstack }, | |
+ { "|||", col }, | |
+ { "[]@", spiral }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff -r 183cedbebe52 -r 54ee8a7845c7 config.def.h | |
--- a/config.def.h Fri Nov 04 20:02:35 2011 +0100 | |
+++ b/config.def.h Wed Nov 09 23:50:23 2011 +0800 | |
@@ -32,6 +32,9 @@ | |
{ "[]=", tile }, /* first entry is default */ | |
{ "><>", NULL }, /* no layout function means floating behavior */ | |
{ "[M]", monocle }, | |
+ { "TTT", bstack }, | |
+ { "|||", col }, | |
+ { "[]@", spiral }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# HG changeset patch | |
# User lolilolicon <[email protected]> | |
# Date 1320595974 -28800 | |
# Node ID 5776983c49e43b864db2de06225f1450d76bcd89 | |
# Parent 183cedbebe526a782ecf323d46e7f0fad97eb7e9 | |
Import the master-slave layout idea, with new layouts. | |
diff -r 183cedbebe52 -r 5776983c49e4 config.def.h | |
--- a/config.def.h Fri Nov 04 20:02:35 2011 +0100 | |
+++ b/config.def.h Mon Nov 07 00:12:54 2011 +0800 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
scratchpad.patch for dwm 5.9 | |
A scratchpad is a window that is assigned the (hidden) scratchtag. | |
A window becomes a scratchpad if its WM_NAME at its creation time is the value | |
of the scratchpadname variable. | |
togglescratchpad() is actually a variant of toggleview(). | |
To use this, put the following definitions in config.h: | |
static const char scratchpadname[] = "Scratchpad"; /* make it unique, avoid name collision */ | |
static const char *scratchpadcmd[] = { "uxterm", "-title", scratchpadname, "-geometry", "80x20", NULL }; /* WM_NAME must be scratchpadname */ |
NewerOlder