Niols / weechat-scripts

Weechat scripts, sometimes usefull.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

WeeChat Scripts

This repo contains some WeeChat scripts. Some of them might even be usefull!

How can I use the script brouillamini.py?

  1. Copy this script in your WeeChat python directory: ~/.weechat/python/brouillamini.py.
  2. Copy the data/brouillamini/ directory in ~/.weechat/python/data/brouillamini/ if such a repository exists on the server.
  3. Load the plugin in WeeChat: /python load brouillamini.py (don't forget the .py)
  4. If you want the script to be automatically loaded each time WeeChat starts, link it in the autoload directory: cd ~/.weechat/python/ && ln -s brouillamini.py autoload/

If you're lazy, you can do that with all scripts at the same time:

weepydir=~/.weechat/python
mkdir -p $weepydir
git clone https://github.com/Niols/WeeChat-Scripts /tmp/wcs
cp -r .tmp/wcs/*.py /tmp/wcs/data/ $weepydir/
mkdir -p $weepydir/autoload
ln -s $weepydir/*.py $weepydir/autoload/

Why the GPLv3 license?

Because the Python Plugin for WeeChat is licensed under the GPLv3.

About

Weechat scripts, sometimes usefull.

License:GNU General Public License v3.0


Languages

Language:Python 100.0%