[wiki] [sites] wiki updated

From: <hg_AT_suckless.org>
Date: Sun, 27 Mar 2011 09:01:15 +0000 (UTC)

changeset: 714:bf6c1fef2189
parent: 709:d4830f5b617d
user: Anselm R Garbe <anselm_AT_garbe.us>
date: Sun Mar 27 09:00:47 2011 +0000
files: suckless.org/donations.md
description:
making it clear that I don't want wmii donations


diff -r d4830f5b617d -r bf6c1fef2189 suckless.org/donations.md
--- a/suckless.org/donations.md Fri Mar 18 11:27:16 2011 +0000
+++ b/suckless.org/donations.md Sun Mar 27 09:00:47 2011 +0000
_AT_@ -1,9 +1,17 @@
 DONATIONS
 =========
-Continuing to produce and host suckless software requires the contribution of time, code and -especially for the hosting part- money. If you are able to make a contribution, no matter the size, it will go towards ensuring that we are able to continue to write, support and host the high quality software that makes all of our lives easier.
+Continuing to produce and host suckless software requires the contribution of
+time, code and -especially for the hosting part- money. If you are able to make
+a contribution, no matter the size, it will go towards ensuring that we are
+able to continue to write, support and host the high quality software that
+makes all of our lives easier.
 
-You can donate through [PayPal](https://paypal.com/) using Anselm's gmail address:
-garbeam [at] gmail [dot] com.
+If your donation is *not* wmii related, you can donate through
+[PayPal](https://paypal.com/) using Anselm's gmail address: garbeam [at] gmail
+[dot] com.
+
+If you want to donate particularly to the wmii project, you can donate through
+[PayPal](https://paypal.com/) using Kris' gmail address: maglione [dot] k [at] gmail [dot] com .
 
 We'd like to thank all people who have donated or are donating in one way or another
 to a suckless.org related project. Your generosity of time and/or money is appreciated by the entire suckless community.

changeset: 715:2f424d7cc206
tag: tip
parent: 714:bf6c1fef2189
parent: 713:730b077f7a0e
user: Anselm R Garbe <anselm_AT_garbe.us>
date: Sun Mar 27 09:01:13 2011 +0000
description:
merged


diff -r bf6c1fef2189 -r 2f424d7cc206 dwm.suckless.org/faq.md
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/dwm.suckless.org/faq.md Sun Mar 27 09:01:13 2011 +0000
_AT_@ -0,0 +1,12 @@
+dwm - Frequently asked questions
+================================
+
+* Q: I've got a 1 or 2 pixel gap between the right side of my terminal and the
+ right side of the screen, and I want to turn it off.
+ A: This is due to the column-based nature of terminals. Terminals don't just
+ insert space somewhere, but tell the WM they can't be resized in a certain
+ way. The terminal can't use the "wasted space" anyway, so this is purely
+ aesthetics.
+ You can change `static const Bool resizehints = True;` to `False` in
+ config.h to turn resizehints off. This wastes the same amount of space
+ inside the terminal window that would otherwise be wasted outside.
diff -r bf6c1fef2189 -r 2f424d7cc206 dwm.suckless.org/index.md
--- a/dwm.suckless.org/index.md Sun Mar 27 09:00:47 2011 +0000
+++ b/dwm.suckless.org/index.md Sun Mar 27 09:01:13 2011 +0000
_AT_@ -53,9 +53,17 @@
 * [dwm 5.8.2](http://dl.suckless.org/dwm/dwm-5.8.2.tar.gz) (20kb) (20100604)
 * See also [dmenu](http://tools.suckless.org/dmenu)
 
+Support
+-------
+See the [faq](http://dwm.suckless.org/faq] for the frequent problems that
+arise. The next step is to look at the sourcecode and the config.h for obvious
+names, which could be related to the problem that arose. If that does not help
+to fix the problem, then there is the #suckless IRC channel and the
+mailinglist.
+
 Development
 -----------
-dwm is actively developed in parallel to wmii. You can [browse](http://hg.suckless.org/dwm) its source code repository or get a copy using [Mercurial](http://www.selenic.com/mercurial/) with the following command:
+You can [browse](http://hg.suckless.org/dwm) its source code repository or get a copy using [Mercurial](http://www.selenic.com/mercurial/) with the following command:
 
         hg clone http://hg.suckless.org/dwm
 
diff -r bf6c1fef2189 -r 2f424d7cc206 tools.suckless.org/dmenu/patches/dmenu-4.2.1-fastgrab.diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tools.suckless.org/dmenu/patches/dmenu-4.2.1-fastgrab.diff Sun Mar 27 09:01:13 2011 +0000
_AT_@ -0,0 +1,50 @@
+diff -r a79e4a9cb167 dmenu.c
+--- a/dmenu.c Sat Nov 20 09:25:08 2010 +0000
++++ b/dmenu.c Fri Feb 18 04:24:31 2011 +0000
+_AT_@ -66,6 +68,7 @@
+ int
+ main(int argc, char *argv[]) {
+ int i;
++ Bool fastgrab = False;
+
+ progname = "dmenu";
+ for(i = 1; i < argc; i++)
+_AT_@ -78,6 +81,10 @@
+ topbar = False;
+ else if(!strcmp(argv[i], "-i"))
+ fstrncmp = strncasecmp;
++ else if(!strcmp(argv[i], "-f"))
++ fastgrab = True;
+ else if(i == argc-1)
+ usage();
+ /* double flags */
+_AT_@ -101,15 +108,61 @@
+ usage();
+
+ dc = initdc();
+ initfont(dc, font);
++
++ if(fastgrab)
++ setup(); /* grab X _now_ */
++
+ readstdin();
+- setup();
++
++ if(!fastgrab)
++ setup();
++ else
++ match(); /* need to re-match now we've read the input */
++
+ run();
+
+ return EXIT_FAILURE; /* should not reach */
+ }
+_AT_@ -536,7 +594,7 @@
+
+ void
+ usage(void) {
+- fputs("usage: dmenu [-b] [-i] [-l lines] [-m monitor] [-p prompt] [-fn font]\n"
++ fputs("usage: dmenu [-b] [-i] [-f] [-l lines] [-m monitor] [-p prompt] [-fn font]\n"
+ " [-nb color] [-nf color] [-sb color] [-sf color] [-v]\n", stderr);
+ exit(EXIT_FAILURE);
+ }
diff -r bf6c1fef2189 -r 2f424d7cc206 tools.suckless.org/dmenu/patches/fastgrab.md
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tools.suckless.org/dmenu/patches/fastgrab.md Sun Mar 27 09:01:13 2011 +0000
_AT_@ -0,0 +1,11 @@
+FAST GRAB
+=========
+
+This patch causes dmenu to grab the X11 keyboard before reading input.
+
+This is useful if your machine isn't too snappy, or if your input to dmenu takes a while to complete.
+
+Download
+--------
+
+* [dmenu-4.2.1-fastgrab.diff](dmenu-4.2.1-fastgrab.diff)
Received on Sun Mar 27 2011 - 11:01:15 CEST

This archive was generated by hypermail 2.3.0 : Thu Sep 13 2012 - 19:31:42 CEST