From f853d479d6e699499bee610ea8584b7e09f89cb3 Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Sat, 20 Oct 2012 13:14:07 -0500 Subject: Add weechat, ack, git and nethack --- weechat/python/screen_away.py | 151 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 151 insertions(+) create mode 100644 weechat/python/screen_away.py (limited to 'weechat/python/screen_away.py') diff --git a/weechat/python/screen_away.py b/weechat/python/screen_away.py new file mode 100644 index 0000000..744638a --- /dev/null +++ b/weechat/python/screen_away.py @@ -0,0 +1,151 @@ +# -*- coding: utf-8 -*- +# +# Copyright (c) 2009 by xt +# Copyright (c) 2009 by penryu +# Copyright (c) 2010 by Blake Winton +# Copyright (c) 2010 by Aron Griffis +# Copyright (c) 2010 by Jani Kesänen +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# + +# +# (this script requires WeeChat 0.3.0 or newer) +# +# History: +# 2010-08-07, Filip H.F. "FiXato" Slagter +# version 0.8: add command on attach feature +# 2010-05-07, Jani Kesänen +# version 0.7: add command on detach feature +# 2010-03-07, Aron Griffis +# version 0.6: move socket check to register, +# add hook_config for interval, +# reduce default interval from 60 to 5 +# 2010-02-19, Blake Winton +# version 0.5: add option to change nick when away +# 2010-01-18, xt +# version 0.4: only update servers that are connected +# 2009-11-30, xt +# version 0.3: do not touch servers that are manually set away +# 2009-11-27, xt +# version 0.2: code for TMUX from penryu +# 2009-11-27, xt +# version 0.1: initial release + +import weechat as w +import re +import os + +SCRIPT_NAME = "screen_away" +SCRIPT_AUTHOR = "xt " +SCRIPT_VERSION = "0.8" +SCRIPT_LICENSE = "GPL3" +SCRIPT_DESC = "Set away status on screen detach" + +settings = { + 'message': 'Detached from screen', + 'interval': '5', # How often in seconds to check screen status + 'away_suffix': '', # What to append to your nick when you're away. + 'command_on_attach': '', # Command to execute on attach + 'command_on_detach': '' # Command to execute on detach +} + +TIMER = None +SOCK = None +AWAY = False + +def set_timer(): + '''Update timer hook with new interval''' + + global TIMER + if TIMER: + w.unhook(TIMER); + TIMER = w.hook_timer(int(w.config_get_plugin('interval')) * 1000, + 0, 0, "screen_away_timer_cb", '') + +def screen_away_config_cb(data, option, value): + if option.endswith(".interval"): + set_timer() + return w.WEECHAT_RC_OK + +def get_servers(): + '''Get the servers that are not away, or were set away by this script''' + + infolist = w.infolist_get('irc_server','','') + buffers = [] + while w.infolist_next(infolist): + if not w.infolist_integer(infolist, 'is_connected') == 1: + continue + if not w.infolist_integer(infolist, 'is_away') or \ + w.infolist_string(infolist, 'away_message') == \ + w.config_get_plugin('message'): + buffers.append((w.infolist_pointer(infolist, 'buffer'), + w.infolist_string(infolist, 'nick'))) + w.infolist_free(infolist) + return buffers + +def screen_away_timer_cb(buffer, args): + '''Check if screen is attached, update awayness''' + + global AWAY, SOCK + + suffix = w.config_get_plugin('away_suffix') + attached = os.access(SOCK, os.X_OK) # X bit indicates attached + + if attached and AWAY: + w.prnt('', '%s: Screen attached. Clearing away status' % SCRIPT_NAME) + for server, nick in get_servers(): + w.command(server, "/away") + if suffix and nick.endswith(suffix): + nick = nick[:-len(suffix)] + w.command(server, "/nick %s" % nick) + AWAY = False + if w.config_get_plugin("command_on_attach"): + w.command("", w.config_get_plugin("command_on_attach")) + + elif not attached and not AWAY: + w.prnt('', '%s: Screen detached. Setting away status' % SCRIPT_NAME) + for server, nick in get_servers(): + if suffix: + w.command(server, "/nick %s%s" % (nick, suffix)); + w.command(server, "/away %s" % w.config_get_plugin('message')); + AWAY = True + if w.config_get_plugin("command_on_detach"): + w.command("", w.config_get_plugin("command_on_detach")) + + return w.WEECHAT_RC_OK + + +if w.register(SCRIPT_NAME, SCRIPT_AUTHOR, SCRIPT_VERSION, SCRIPT_LICENSE, + SCRIPT_DESC, "", ""): + for option, default_value in settings.iteritems(): + if not w.config_is_set_plugin(option): + w.config_set_plugin(option, default_value) + + if 'STY' in os.environ.keys(): + # We are running under screen + cmd_output = os.popen('env LC_ALL=C screen -ls').read() + match = re.search(r'Sockets? in (/.+)\.', cmd_output) + if match: + SOCK = os.path.join(match.group(1), os.environ['STY']) + + if not SOCK and 'TMUX' in os.environ.keys(): + # We are running under tmux + socket_data = os.environ['TMUX'] + SOCK = socket_data.rsplit(',',2)[0] + + if SOCK: + set_timer() + w.hook_config("plugins.var.python." + SCRIPT_NAME + ".*", + "screen_away_config_cb", "") -- cgit