Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/niols/weechat-scripts
Weechat scripts, sometimes usefull.
https://github.com/niols/weechat-scripts
gplv3 python weechat weechat-scripts
Last synced: 14 days ago
JSON representation
Weechat scripts, sometimes usefull.
- Host: GitHub
- URL: https://github.com/niols/weechat-scripts
- Owner: Niols
- License: gpl-3.0
- Created: 2014-10-29T14:01:12.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2017-11-15T01:54:03.000Z (almost 7 years ago)
- Last Synced: 2023-02-26T17:12:06.034Z (over 1 year ago)
- Topics: gplv3, python, weechat, weechat-scripts
- Language: Python
- Homepage:
- Size: 42 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
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](https://github.com/weechat/weechat/tree/master/src/plugins/python) for WeeChat is licensed under the GPLv3.