Re: [dev] dwm window outline during mouse resize/move patch

2012-06-02 Thread Nick
Quoth John A. Grahor: > I forward X halfway around the world and the mouse move/resize as > implemented in dwm brings things to a screeching halt. This would be useful to me too. Even on a local computer, with a sufficiently crappy video driver and rotated X, resizing and moving can slow signifi

[dev] [surf] generic toggle patch

2012-06-02 Thread stanio
Hi, Here is a simple patch to toggle binary webkit features by name. --s_ diff -r 51a6d05c2c84 config.def.h --- a/config.def.h Mon Mar 26 09:33:42 2012 +0200 +++ b/config.def.h Thu May 31 09:31:38 2012 +0200 @@ -42,4 +42,8 @@ { MODKEY, GDK_f, spawn, SETPROP(

[dev] [surf] alternate style patch

2012-06-02 Thread stanio
I use this as a simple heuristic to make some broken web pages more readable. It's proven very useful for reading news, docs, all sorts of long text, where the content is more important than what the author assumes is the best appearance. The patch just alternates the default and text_style css. F

[dev] [surf] insert mode patch

2012-06-02 Thread stanio
Most of this code is certainly not by me, but I couldn't find such patch, and I tought it could be useful to have around. Surf starts in 'normal' mode, where all your keybindings have effect with and without pressing the modkey, e.g. both 'j' and '^j' scroll down a line. Pressing 'i' in 'norma

[dev] [surf] status area patch

2012-06-02 Thread stanio
This patch writes several letters in the beginning of the title which represent the current status of boolean options: capital 'I' means 'showing images is enabled', while 'i' means it is disabled. Same for javascript, plugins, caret browsing,... I've had several implementations of this for a year

[dev] [surf] zoom text patch

2012-06-02 Thread stanio
This patch enables zooming text only, i.e. increase/decrease font size and preserve other elements' sizes. --s_ diff -r 51a6d05c2c84 config.def.h --- a/config.def.h Mon Mar 26 09:33:42 2012 +0200 +++ b/config.def.h Thu May 31 19:30:14 2012 +0200 @@ -32,6 +32,9 @@ { MODKEY|GDK_SHIFT_

Re: [dev] [surf] status area patch

2012-06-02 Thread Kurt Van Dijck
On Sat, Jun 02, 2012 at 02:22:28PM +0200, sta...@cs.tu-berlin.de wrote: > This patch writes several letters in the beginning of the title which > represent the current status of boolean options: capital 'I' means > 'showing images is enabled', while 'i' means it is disabled. Same for > javascript,

Re: [dev] [surf] status area patch

2012-06-02 Thread stanio
* Kurt Van Dijck [2012-06-02 19:48]: > Have you tought on indicating the normal/insert mode of your earlier patch? > Kurt yes. but then the patch depends on the insert mode patch. I would avoid dependencies where not needed. It is straightforward to add, though. togglestat[5] = '\0';