diff options
| author | tv <tv@also> | 2011-05-29 15:47:21 +0200 | 
|---|---|---|
| committer | tv <tv@also> | 2011-05-29 15:47:21 +0200 | 
| commit | e0ec5d2e8560ae433ee677622b24ba82dbe7630b (patch) | |
| tree | a1fcb14eeafc3df41427896d9b413087d24d71f1 /noise/modules/chat | |
| parent | edaa1d7f7a0ed33c019fce185b8aff7563498b6e (diff) | |
lowered filesystem hierarchy--everything are modules
Diffstat (limited to 'noise/modules/chat')
| -rwxr-xr-x | noise/modules/chat | 33 | 
1 files changed, 33 insertions, 0 deletions
| diff --git a/noise/modules/chat b/noise/modules/chat new file mode 100755 index 00000000..e5badc36 --- /dev/null +++ b/noise/modules/chat @@ -0,0 +1,33 @@ +#! /bin/sh + +case "$1" in +  (--help) echo send text to everyone with @@ prepended ;; +  (/nick) +    echo set nick to $2 +    echo /set chat_nick $2 >$NOISE_linefeed;; +  (/names) +    cd /tmp/noise +    . $NOISE_pid/environment +    nick="${chat_nick-$NOISE_pid}" +    channel="$chat_channel" +    echo "[34mUsers in channel [4m$channel[m" +    for client in * ; do +      . $client/environment +       chat_nick="${chat_nick-$client}" +       if test "$channel" = "$chat_channel" && test "$default_command" = chat ; then +       	 echo "[33m$chat_nick[m" +       fi +       unset chat_nick +       unset chat_channel +       unset default_command  +    done  ;;  +  (*)    +    cd /tmp/noise +    . $NOISE_pid/environment +    nick="${chat_nick-$NOISE_pid}" +     +    echo "/send_to_channel $chat_channel [33m$nick:[m $*" > $NOISE_linefeed +       +  +    #echo /wall [33m@@[m $* >$NOISE_linefeed +esac | 
