changeset: 398:985699542243
parent: 394:41240a14584a
user: Thomas Adam <thomas.adam22_AT_gmail.com>
date: Sun Dec 13 20:56:21 2009 +0000
files: tools.suckless.org/dmenu/patches/allow-kp_decimal-in-dmenu.patch tools.suckless.org/dmenu/patches/kp_decimal.md
description:
Handle KP_Decimal in dmenu.
This patch handles the decimal key on keypads within dmenu.
diff -r 41240a14584a -r 985699542243 tools.suckless.org/dmenu/patches/allow-kp_decimal-in-dmenu.patch
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tools.suckless.org/dmenu/patches/allow-kp_decimal-in-dmenu.patch Sun Dec 13 20:56:21 2009 +0000
_AT_@ -0,0 +1,12 @@
+diff -r 4684b2cf4eab dmenu.c
+--- a/dmenu.c Sat Dec 05 16:52:53 2009 +0000
++++ b/dmenu.c Sun Dec 13 20:50:57 2009 +0000
+_AT_@ -395,6 +395,8 @@
+ ksym = XK_Return;
+ else if(ksym >= XK_KP_0 && ksym <= XK_KP_9)
+ ksym = (ksym - XK_KP_0) + XK_0;
++ else if(ksym == XK_KP_Decimal)
++ ksym = XK_period;
+ }
+ if(IsFunctionKey(ksym) || IsKeypadKey(ksym)
+ || IsMiscFunctionKey(ksym) || IsPFKey(ksym)
diff -r 41240a14584a -r 985699542243 tools.suckless.org/dmenu/patches/kp_decimal.md
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/tools.suckless.org/dmenu/patches/kp_decimal.md Sun Dec 13 20:56:21 2009 +0000
_AT_@ -0,0 +1,14 @@
+KEYPAD DECIMAL KEY
+==================
+
+This patch allows the decimal key on keypads to input a decimal in dmeni.
+
+Download
+--------
+
+* [allow-kp_decimal-in-dmenu.patch](allow-kp_decimal-in-dmenu.patch)
+
+Author
+------
+
+* Thomas Adam (thomas_adam) <[thomas.adam22_AT_gmail.com](mailto:thomas.adam22_AT_gmail.com)>
changeset: 399:ad6b3447500f
tag: tip
parent: 398:985699542243
parent: 397:c50c6869a03d
user: Thomas Adam <thomas.adam22_AT_gmail.com>
date: Sun Dec 13 20:57:16 2009 +0000
description:
Transient.
diff -r 985699542243 -r ad6b3447500f dwm.suckless.org/patches/historical/mouseontitle.md
--- a/dwm.suckless.org/patches/historical/mouseontitle.md Sun Dec 13 20:56:21 2009 +0000
+++ b/dwm.suckless.org/patches/historical/mouseontitle.md Sun Dec 13 20:57:16 2009 +0000
_AT_@ -1,7 +1,7 @@
MOUSE EVENTS ON TITLE
=====================
-Last update: 2007-10-25
+Last update: 2009-12-11
Adds mouse events on the title bar to switch between clients using
the mouse wheel and using the left click to zoom, right click kill
_AT_@ -11,23 +11,27 @@
The right click on the layout area maximizes the client.
-If you are using the nmaster patch you will be able to change the nmaster value using the mouse wheel.
+If you are using the nmaster patch you will be able to change the nmaster
+value using the mouse wheel.
Change the mwfact using the wheel at x=0 placing the cursor inside the bar.
+Notes
+-----
+Last versions of dwm (5.x series) allow to bind mouse events to actions,
+so this patch can be replaced by a proper config.h tweak.
+
Patch
-----
-Latest patch for [dwm 4.7][2] is here.
-For [dwm 4.6][1] take this one.
+Patch for [dwm 4.6][1] is here.
See in event.c at function 'buttonpress()' to patch older dwm releases.
-AUTHOR
+Author
------
* pancake <youterm.com>
-[1]:
http://news.nopcode.org/mouseontitle-4.6.diff
-[2]:
http://news.nopcode.org/mouseontitle-4.7.diff
+[1]:
http://www.lolcathost.org/b/dwm/mouseontitle-4.6.diff
diff -r 985699542243 -r ad6b3447500f dwm.suckless.org/patches/historical/nmaster.md
--- a/dwm.suckless.org/patches/historical/nmaster.md Sun Dec 13 20:56:21 2009 +0000
+++ b/dwm.suckless.org/patches/historical/nmaster.md Sun Dec 13 20:57:16 2009 +0000
_AT_@ -39,18 +39,16 @@
## Download
- * [nmaster-4.7.c][4] (dwm 4.7) (7.3kb (20071123)
- * [nmaster.c][3] (dwm 4.6) (7.3kb) (20071025)
+ * [nmaster-4.7.c][3] (dwm 4.7) (7.3kb (20071123)
+ * [nmaster.c][2] (dwm 4.6) (7.3kb) (20071025)
- contains ntile, dntile and tilecols. Also supports the clients-per-tag
- * [nmaster-4.5.diff][2] (dwm 4.5) (2.7kb) (20071016)
* [dwm-4.4.1-nmaster.diff][1] (dwm 4.4) (2.8kb) (20070826)
* [nmaster+bstack-5.6.1.diff](nmaster+bstack-5.6.1.diff) (dwm 5.6.1) (5.9kb) (20090824)
- another variation; contains bstack with nmaster support
[1]:
http://schot.a-eskwadraat.nl/files/dwm-4.4.1-nmaster.diff
-[2]:
http://news.nopcode.org/nmaster-4.5.patch
-[3]:
http://news.nopcode.org/nmaster.c
-[4]:
http://news.nopcode.org/nmaster-4.7.c
+[2]:
http://www.lolcathost.org/b/dwm/nmaster.c
+[3]:
http://www.lolcathost.org/b/dwm/nmaster-4.7.c
## Maintainer
diff -r 985699542243 -r ad6b3447500f dwm.suckless.org/patches/historical/taglayouts.md
--- a/dwm.suckless.org/patches/historical/taglayouts.md Sun Dec 13 20:56:21 2009 +0000
+++ b/dwm.suckless.org/patches/historical/taglayouts.md Sun Dec 13 20:57:16 2009 +0000
_AT_@ -2,10 +2,9 @@
## Description ##
-This patch enables one layout per tag in contrast of one layout for all tags. - A more general approach is the [pertag patch][4].
+This patch enables one layout per tag in contrast of one layout for all tags. - A more general approach is the [pertag patch][3].
## Download ##
- * [taglayouts-4.6.diff][3] - static implementation of taglayouts (saves 7 LOCs)
* [dwm-4.6-taglayouts.diff][2]
* [dwm-4.5-taglayouts.diff][1]
_AT_@ -22,6 +21,5 @@
[1]:
http://www.e-jc.de/dwm/4.5/dwm-4.5-tip_ac233c362502-taglayouts.diff
[2]:
http://www.e-jc.de/dwm/4.6/current/dwm-4.6-taglayouts.diff
-[3]:
http://news.nopcode.org/taglayouts-4.6.diff
-[4]: /dwm/patches/pertag.html
+[3]: /dwm/patches/pertag.html
diff -r 985699542243 -r ad6b3447500f dwm.suckless.org/patches/index.md
--- a/dwm.suckless.org/patches/index.md Sun Dec 13 20:56:21 2009 +0000
+++ b/dwm.suckless.org/patches/index.md Sun Dec 13 20:57:16 2009 +0000
_AT_@ -38,7 +38,6 @@
* [bug.n](
http://freenet-homepage.de/bug.n/) -- dwm for windows written in AutoHotkey
* [dvtm](
http://www.brain-dump.org/projects/dvtm/) -- virtual terminal manager (dwm on the console)
* [dwm-gtx](
http://s01.de/~gottox/index.cgi/proj_dwm) -- dwm branch with Xinerama support, pointer movement, different layout
-* [dwm-pancake](
http://news.nopcode.org/miau/pvc.cgi?prj=dwm) -- (old) modified dwm with client per tag, nmaster patch
* [dwm-sprinkles](
http://0mark.unserver.de/dwm-sprinkles/) -- dwm with colorfull bar, transparency, pre-configured pertag and more
* [dwm-win32](
http://www.brain-dump.org/projects/dwm-win32/) -- dwm ported to windows
* [echinus](
http://www.rootshell.be/~polachok/code/) -- dwm fork with EWMH, Xft support
diff -r 985699542243 -r ad6b3447500f suckless.org/index.md
--- a/suckless.org/index.md Sun Dec 13 20:56:21 2009 +0000
+++ b/suckless.org/index.md Sun Dec 13 20:57:16 2009 +0000
_AT_@ -5,8 +5,8 @@
suckless community meeting
--------------------------
-There'll be a community meeting on Dec 28 2009 starting from 8pm. Meet up in
-front of the BCC at Alexanderplatz (the building where the 26C3 is located) at
+There'll be a community meeting on **Dec 28 2009** starting from **8pm**. Meet up in
+front of the BCC at Alexanderplatz (the building where the **26C3** is located) at
8pm and then head out for some nice bars in Berlin in order to discuss the next
suckless software projects.
diff -r 985699542243 -r ad6b3447500f suckless.org/other_projects.md
--- a/suckless.org/other_projects.md Sun Dec 13 20:56:21 2009 +0000
+++ b/suckless.org/other_projects.md Sun Dec 13 20:57:16 2009 +0000
_AT_@ -2,10 +2,21 @@
==============
There are several other projects which are inspired by the spirit of suckless.
-* [dietline](
http://news.nopcode.org/dietline.c)
-* [dvtm](
http://www.brain-dump.org/projects/dvtm/)
+* [bug](
http://vicerveza.homeunix.net/~viric/soft/bug/) - commandline todo-tracking system
+* [dietline](
http://hg.youterm.com/radare/file/87579f8c5087/src/dietline.c) - minimal readline-like implementation
+* [ired](
http://hg.youterm.com/ired/) - minimalistic hexadecimal editor inspired in radare
+* [spp](
http://hg.youterm.com/spp/) - simple pre processor
+* [alt](
http://hg.youterm.com/alt/) - abstract language tree
+* [acr](
http://hg.youterm.com/acr/) - autoconf replacement
+* [slpm](
http://hg.youterm.com/slpm/) - suckless package manager
+* [mmsdk](
http://hg.youterm.com/mmsdk/) - minimal maemo sdk (based on qemu-arm)
+* [micy](
http://hg.youterm.com/micy/) - minimalistic mouse handler (depends on driver)
+* [xpw](
http://hg.youterm.com/xpw/) - X piped widgets - X widget library based on pipes
+* [xicon](
http://hg.youterm.com/xicon/) - small icon-based dzen-like utility
+* [passman](
http://nibble.develsec.org/hg/toys/file/) - password manager + other nibble suckless toys
+* [dvtm](
http://www.brain-dump.org/projects/dvtm/) - screen-like dwm (curses)
* [dzen](
http://dzen.geekmode.org/)
* [kelp](
http://kelp.sf.net)
-* [sltar](
http://s01.de/~gottox/index.cgi/proj_sltar)
+* [sltar](
http://s01.de/~gottox/index.cgi/proj_sltar) - suckless tar
* [smu](
http://s01.de/~gottox/index.cgi/proj_smu)
* [bgs](
http://s01.de/~gottox/index.cgi/proj_bgs)
diff -r 985699542243 -r ad6b3447500f wmii.suckless.org/themes.tpl
--- a/wmii.suckless.org/themes.tpl Sun Dec 13 20:56:21 2009 +0000
+++ b/wmii.suckless.org/themes.tpl Sun Dec 13 20:57:16 2009 +0000
_AT_@ -61,98 +61,97 @@
WMII_FOCUSCOLORS=('#ffffff' '#153F1F' '#2A7F3F')
WMII_BACKGROUND='#333333'
WMII_NORMCOLORS=('#222222' '#5FBF77' '#2A7F3F')
+theme 'default'
-theme 'default'
+WMII_FOCUSCOLORS=('#000000' '#cae682' '#303030')
+WMII_BACKGROUND='#000000'
+WMII_NORMCOLORS=('#f6f3e8' '#242424' '#303030')
+theme 'Wombat (from Vim)'
+
WMII_FOCUSCOLORS=('#A0FF00' '#686363' '#8c8c8c')
WMII_BACKGROUND='#333333'
WMII_NORMCOLORS=('#e0e0e0' '#444444' '#666666')
+theme 'gray and green'
-theme 'Wombat (from Vim)'
-WMII_FOCUSCOLORS=('#000000' '#cae682' '#303030')
-WMII_BACKGROUND='#000000'
-WMII_NORMCOLORS=('#f6f3e8' '#242424' '#303030')
-
-theme 'gray and green'
WMII_FOCUSCOLORS=('#000000' '#bbc5ff' '#000000')
WMII_BACKGROUND='#ddeedd'
WMII_NORMCOLORS=('#000000' '#f8f8f4' '#f8f8f4')
+theme 'light blue and white'
-theme 'light blue and white'
WMII_FOCUSCOLORS=('#ffffff' '#285577' '#4C7899')
WMII_BACKGROUND='#333333'
WMII_NORMCOLORS=('#888888' '#222222' '#333333')
+theme 'blue and smoke'
-theme 'blue and smoke'
WMII_FOCUSCOLORS=('#ff7700' '#11111' '#ff7700')
WMII_BACKGROUND='#333333'
WMII_NORMCOLORS=('#000000' '#ffffff' '#666666')
WMII_FONT='-*-terminus-*-*-*-*-12-*-*-*-*-*-*-*'
+theme 'sleepless night'
-theme 'sleepless night'
WMII_FOCUSCOLORS=('#66FF00' '#101010' '#66FF00')
WMII_BACKGROUND='#888888'
WMII_NORMCOLORS=('#EEEEEE' '#000000' '#111111')
WMII_FONT='-artwiz-snap-normal-*-*-*-*-*-*-*-*-*-*-*'
+theme 'the green'
-theme 'the green'
WMII_FOCUSCOLORS=('#000000' '#CD6D37' '#000000')
WMII_BACKGROUND='#888888'
WMII_NORMCOLORS=('#000000' '#848484' '#000000')
WMII_FONT='-b&h-lucidatypewriter-medium-r-*-*-*-100-*-*-*-*-*-*'
+theme 'the orange'
-theme 'the orange'
WMII_FOCUSCOLORS=('#fefefe' '#307080' '#5090a0')
WMII_BACKGROUND='#333333'
WMII_NORMCOLORS=('#cccccc' '#004050' '#002030')
WMII_FONT='-*-fixed-medium-r-normal-*-13-*-*-*-*-*-*-*'
+theme 'crystal shining style'
-theme 'crystal shining style'
WMII_FOCUSCOLORS=('#FFFFFF' '#FF11FF' '#000000')
WMII_BACKGROUND='#FF88FF'
WMII_NORMCOLORS=('#000000' '#FF55FF' '#000000')
WMII_FONT='-*-fixed-medium-r-normal-*-13-*-*-*-*-*-*-*'
+theme 'kawai anime'
-theme 'kawai anime'
WMII_FOCUSCOLORS=('#eeeeee' '#506070' '#708090')
WMII_BACKGROUND='#333333'
WMII_NORMCOLORS=('#bbbbbb' '#222222' '#000000')
WMII_FONT='-artwiz-snap-*-*-*-*-*-*-*-*-*-*-*-*'
+theme 'anthrazit style'
-theme 'anthrazit style'
WMII_FOCUSCOLORS=('#000000' '#eaffff' '#8888cc')
WMII_BACKGROUND='#757575'
WMII_NORMCOLORS=('#000000' '#ffffea' '#bdb76b')
WMII_FONT='-artwiz-glispbold-*-*-*-*-*-*-*-*-*-*-*-*'
+theme 'acme style'
-theme 'acme style'
WMII_FOCUSCOLORS=('#000000' '#9eeeee' '#8888cc')
WMII_BACKGROUND='#757575'
WMII_NORMCOLORS=('#000000' '#eeee9e' '#99994c')
WMII_FONT='-artwiz-glispbold-*-*-*-*-*-*-*-*-*-*-*-*'
+theme 'acme darkly style'
-theme 'acme darkly style'
WMII_FOCUSCOLORS=('#000000' '#9191FF' '#444444')
WMII_BACKGROUND='#333333'
WMII_NORMCOLORS=('#9191FF' '#000000' '#444444')
WMII_FONT='-artwiz-glispbold-*-*-*-*-*-*-*-*-*-*-*-*'
+theme 'blue style'
-theme 'blue style'
WMII_FOCUSCOLORS=('#EEEEEE' '#005577' '#006699')
WMII_BACKGROUND='#111111'
WMII_NORMCOLORS=('#BBBBBB' '#222222' '#000000')
WMII_FONT='-artwiz-glispbold-*-*-*-*-*-*-*-*-*-*-*-*'
+theme 'bluedark style'
-theme 'bluedark style'
WMII_FOCUSCOLORS=('#ffffff' '#282828' '#cccccc')
WMII_BACKGROUND='#333333'
WMII_NORMCOLORS=('#e0e0e0' '#0a0a0a' '#606060')
+theme 'gloom'
-theme 'gloom'
WMII_FOCUSCOLORS=('#54FF54' '#000000' '#73A5FF')
WMII_BACKGROUND='#000000'
WMII_NORMCOLORS=('#A8A8A8' '#000000' '#A07040')
WMII_FONT='*-fixed-medium-r-*-*-13-*-*-*-*-*-*-*'
-
theme 'Xterm style'
%}
Received on Sun Dec 13 2009 - 21:57:22 CET