Glide Note

glidenote's blog

Weegetを利用して、WeeChatのPlugin管理を楽にする

最近IRCクライアントでLimeChatを捨てて、WeeChatを使い始めた人が 周りに増えてきたので、Pluginの導入方法を共有。 私の環境はScientific Linux 6.1ですが、他のOSでもそのまま使えると思います。

weegetを利用してPluginを管理

WeeChatにはWeegetという「Pluginを管理するためのPlugin」があるので一番最初に導入しましょう。

1
2
cd ~/.weechat/python/autoload/
wget http://www.weechat.org/files/scripts/weeget.py

ファイルの配置が終わったらWeeChatから

1
/python autoload

をして、利用出来るようにします。

weegetのコマンド

1
2
3
4
5
6
7
8
9
10
/help weeget

weechat     |          list: list scripts (search text if given)
weechat     | listinstalled: list installed scripts (search text if given)   
weechat     |          show: show detailed information about a script (in repository)
weechat     |       install: install/upgrade script(s)
weechat     |         check: check if local scripts needs upgrade
weechat     |        update: update local scripts cache
weechat     |       upgrade: upgrade all local scripts if they are obsolete
weechat     |        remove: remove script(s)

たとえばめちゃくちゃ便利なbuffers.plを導入する場合は下記のような感じ

1
/weeget install buffers

私の使っているPlugin

  • buffers Sidebar with list of buffers.
  • go Quick jump to buffers.
  • grep Search regular expression in buffers or log files.
  • growl Send Growl notifications upon events.
  • highmon Adds a highlight monitor buffer.
  • im_kayac_com_notify Push notification to im.kayac.com.
  • weeget Scripts manager.

WeeChatを使いこなして、CUI生活を快適にしていきましょう

Comments