1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
|
# -*- coding: utf-8 -*-
#
# Copyright 2016 Gerard Ryan <gerard@ryan.lt>
#
# 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 <http://www.gnu.org/licenses/>.
# Changelog:
#
# 2016-11-05: Gerard Ryan <gerard@ryan.lt>
# 0.1.0 : Initial version
#
# 2016-12-17: Gerard Ryan <gerard@ryan.lt>
# 0.2.0 : - Prevent changing manually-set away status
# - Allow configuration of message and poll time
# - Tolerate gnome-shell crashes
#
# Contributions welcome at:
# https://github.com/grdryn/weechat-gnome-screensaver-away
from __future__ import print_function
try:
import dbus
import weechat
except ImportError:
print('This program is intended to be run by weechat, and expects the')
print('dbus-python library to be installed.')
SCRIPT_NAME = 'gnome-screensaver-away'
SCRIPT_AUTHOR = 'Gerard Ryan <gerard@ryan.lt>'
SCRIPT_VERSION = '0.2.0'
SCRIPT_LICENSE = 'GPLv3+'
SCRIPT_DESC = 'Set away status based on GNOME ScreenSaver status'
def set_default_configuration(away_msg, poll_interval):
if not weechat.config_get_plugin('away_msg'):
weechat.config_set_plugin('away_msg', away_msg)
if not weechat.config_get_plugin('poll_interval'):
weechat.config_set_plugin('poll_interval', str(poll_interval))
def get_poll_interval_safely():
poll_interval = 5000 # default
try:
poll_interval = int(weechat.config_get_plugin('poll_interval'))
except ValueError:
weechat.println('poll_interval is not an int, falling back to default')
return poll_interval
# TODO: Try to track the away status of each IRC server independently?
def check_away_status():
away = (False, False)
irc_servers = weechat.infolist_get("irc_server", "", "")
while weechat.infolist_next(irc_servers):
auto_away_msg = weechat.config_get_plugin('away_msg')
current_away_msg = weechat.infolist_string(irc_servers, "away_message")
is_away_by_me = current_away_msg == auto_away_msg
is_away = bool(weechat.infolist_integer(irc_servers, "is_away"))
away = (is_away, is_away_by_me)
return away
def check_screensaver_status(data, remaining_calls):
away, auto_away = check_away_status()
screensaver = dbus.SessionBus().get_object(
'org.gnome.ScreenSaver', '/org/gnome/ScreenSaver')
screensaver_on = screensaver.GetActive(
dbus_interface='org.gnome.ScreenSaver')
if screensaver_on and not away:
weechat.command('', '/away -all {0}'.format(
weechat.config_get_plugin('away_msg')))
elif away and auto_away and not screensaver_on:
weechat.command('', '/away -all')
return weechat.WEECHAT_RC_OK
if __name__ == '__main__':
weechat.register(SCRIPT_NAME, SCRIPT_AUTHOR, SCRIPT_VERSION, SCRIPT_LICENSE,
SCRIPT_DESC, '', '')
set_default_configuration('I am away', 5000)
poll_interval = get_poll_interval_safely()
weechat.hook_timer(poll_interval, 0, 0, 'check_screensaver_status', '')
|