Compare commits

..

No commits in common. "trunk" and "trunk" have entirely different histories.
trunk ... trunk

2 changed files with 8 additions and 16 deletions

View File

@ -15,9 +15,6 @@ such as `irssi`, the following server information will apply:
* Port 6667
* No TLS
If you're using the `catgirl` client, you can just run `catgirl local`.
This uses the default system config. See `man 1 catgirl` if you want a custom config.
Don't forget to `/join #institute` and `/join #meta`.
**NOTE:** You must register with `nickserv` to talk in `#meta`:
@ -77,16 +74,11 @@ And if you're using `irssi`
/connect -tls -tls_verify irc.tilde.chat 6697
```
Or from `catgirl`:
The tildeverse IRC network also runs an instance of `The Lounge`, a
web-based IRC client that allows you to stay connected even when you're
away. It's available at:
```
catgirl -h institute.tilde.chat -n <nick>
```
The tilde.chat IRC network also runs two web clients:
* [gamja](https://tilde.chat/gamja)
* [kiwi](https://tilde.chat/kiwi)
* [https://web.tilde.chat](https://web.tilde.chat)
Join us on the tildeverse IRC network and socialize with other tilde users!

View File

@ -11,7 +11,7 @@ them up on this shell. So here are some things I do on my local machine
that work here:
To get the shell to tell you when you have new mail, after command
executions, add this to your `.profile` or your `$ENV` files
executions, add this to your `.profile` or your `.kshrc` files
(or other shell RC file) in your home directory.
```
@ -20,16 +20,16 @@ export MAILCHECK=0
And, if you want, you can have a persistent notification when
you have un-incorporated mail, or more specifically, when your
`$MAIL` (`/var/mail/$USER` by default)` isn't empty.
`/var/mail/<username>` isn't empty.
```
PS1="$(test -s $MAIL ] && echo '* ')$PS1"
PS1="\$([-s /var/mail/`whoami` ] && echo '* ')$PS1"
```
For maildir try this:
```
PS1="$(test -n "$(ls -A $HOME/Maildir/new)" && echo '* ')$PS1"
PS1="$(test -z "`ls -A $HOME/Maildir/new`" || echo '* ')$PS1"
```
This works in `/bin/ksh`, I can't speak for other shells.