scripts
scripts copied to clipboard
Official scripts for WeeChat.
It would be nice to be able to automode (op) my other clients like my bot everywhere when it joins. Exspecially with IRCnet and other networks which don't have services....
WeatherUnderground's login page is broken, so no new users are able to login, unless someone has found out a way, as when I try to login to my account on...
I guess this could be avoided by setting http_hostname/http_hostname_display, but urlserver locked up when I did /disconnect -all and then /reconnect -all after I turned on a VPN. The backtrace...
… remove: unnecessary callback function ## Script info - Script name: parse_relayed_msg - Version: 0.9.7 - Requirements: - Min WeeChat version: - Script tags: ## Description ## Checklist (new script)...
## Script info - Script name: fish.py - Version: 0.13 ## Description handle message tags from ircv3 ## Checklist (script update) - [X] Author has been contacted - [X] Single...
## Script info - Script name: read_marker - Version: 0.1.0 - Requirements: none - Min WeeChat version: none - Script tags: irc, buffer ## Description This script adds support for...
## Script info - Script name: soju.py - Version: 0.3.0 ## Description This IRC extension has been accepted by IRCv3 and has become draft/read-marker. The soju extension is deprecated. Users...
## Script info - Script name: go.py - Version: - Requirements: - Min WeeChat version: - Script tags: ## Description This fixes some issues when switching to a buffer, when...
## Script info - Script name: auto_read_buffer.py - Version: 1.0.0 - Requirements: - Min WeeChat version: - Script tags: buffer, read ## Description Automatically marks a buffer as read upon...
Is axolotl.py python3 ? iteritems is python2 only. ``` for option, default_value in script_options.iteritems(): if not weechat.config_is_set_plugin(option): weechat.config_set_plugin(option, default_value) ``` My suggestion is: ``` for option in script_options: if not...