
On Mon, Jan 28, 2008 at 03:51:53PM +0200, Valery V. Vorotyntsev wrote:
# users module 1 XMonad.Layout.MultiToggle 4 XMonad.Layout.PerWorkspace 3 XMonad.Layout.ToggleLayouts
- XMonad.Layout.ToggleLayouts: I didn't have time but I came to read David's code quite well (moreover I've already hacked David's combinators and ported LayoutCombinators), so that's very easy and I'll do that shortly (before pushing anyway).
The script used to extract statistics (one may call it `user-survey.sh' ;)
#!/bin/sh hawiki="http://www.haskell.org" for url in $(wget -qO - $hawiki/haskellwiki/Xmonad/Config_archive | \ grep '0\.5' | sed -re 's/^.*href="([^"]+).*$/\1/' \ -e "s@^@$hawiki@" | grep '\.hs$'); do mod="$(wget -qO- $url | grep -E 'MultiToggle|PerWorkspace|ToggleLayouts' | \ sed -r 's/^.*> *(.*)$/\1/')" [ -n "$mod" ] && echo "${url##*/}: $mod" done
fwiw this misses at least one ToggleLayouts, which is hidden in an import of XMonad.Config.Droundy. -- David Roundy Department of Physics Oregon State University