82 lines
2.4 KiB
Python
82 lines
2.4 KiB
Python
#!/usr/bin/env python
|
|
# Safe Eyes is a utility to remind you to take break frequently
|
|
# to protect your eyes from eye strain.
|
|
|
|
# Copyright (C) 2017 Gobinath
|
|
|
|
# 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/>.
|
|
"""
|
|
Show health statistics on the break screen.
|
|
"""
|
|
|
|
import logging
|
|
|
|
context = None
|
|
no_of_skipped_breaks = 0
|
|
no_of_breaks = 0
|
|
no_of_cycles = -1
|
|
session = None
|
|
|
|
|
|
def init(ctx, safeeyes_config, plugin_config):
|
|
"""
|
|
Initialize the plugin.
|
|
"""
|
|
global context
|
|
global session
|
|
global no_of_skipped_breaks
|
|
global no_of_breaks
|
|
global no_of_cycles
|
|
logging.debug('Initialize Health Stats plugin')
|
|
context = ctx
|
|
if session is None:
|
|
session = context['session']['plugin'].get('healthstats', None)
|
|
if session is None:
|
|
session = {'no_of_skipped_breaks': 0, 'no_of_breaks': 0, 'no_of_cycles': -1}
|
|
context['session']['plugin']['healthstats'] = session
|
|
no_of_skipped_breaks = session.get('no_of_skipped_breaks', 0)
|
|
no_of_breaks = session.get('no_of_breaks', 0)
|
|
no_of_cycles = session.get('no_of_cycles', -1)
|
|
|
|
|
|
def on_stop_break():
|
|
"""
|
|
After the break, play the alert sound
|
|
"""
|
|
global no_of_skipped_breaks
|
|
if context['skipped']:
|
|
no_of_skipped_breaks += 1
|
|
session['no_of_skipped_breaks'] = no_of_skipped_breaks
|
|
|
|
|
|
def get_widget_title(break_obj):
|
|
"""
|
|
Return the widget title.
|
|
"""
|
|
global no_of_breaks
|
|
global no_of_cycles
|
|
no_of_breaks += 1
|
|
if context['new_cycle']:
|
|
no_of_cycles += 1
|
|
session['no_of_breaks'] = no_of_breaks
|
|
session['no_of_cycles'] = no_of_cycles
|
|
return _('Health Statistics')
|
|
|
|
|
|
def get_widget_content(break_obj):
|
|
"""
|
|
Return the statistics.
|
|
"""
|
|
return 'BREAKS: {}\tSKIPPED: {}\tCYCLES: {}'.format(no_of_breaks, no_of_skipped_breaks, no_of_cycles)
|