On Nov 14, 2007 4:47 PM, Alexis Hildebrandt <[EMAIL PROTECTED]> wrote:
> Hello Chris,
> thanks for the patch I do appreciate it for it brings some subtle
> eyecandy to slock.
>
> Anyone knows how to choose a random image file from a directory using an
> rc or shell script for use with the commands proposed by Chris?

 I was going to say: ls *.png *.jpg etc |shuf |sed q
 But I don't /have/ shuf here. I wonder where it came from on my home
machine... GNU coreutils it seems, must have a newer version at home.
Anyway, shuf is not on my netbsd machine either so I wrote this naive
replacement:

#!/bin/sh
awk '
BEGIN {srand()}
{l[NR]=$0}

END {
        while(length(l)) {
                i=int(rand()*NR+1)
                if(i in l) {
                        print l[i]
                        delete l[i]
                }
        }
}'

-sqweek

Reply via email to