35 lines
743 B
Python
35 lines
743 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Fenrir TTY screen reader
|
|
# By Chrys, Storm Dragon, and contributors.
|
|
|
|
|
|
from fenrirscreenreader.core.i18n import _
|
|
|
|
|
|
class command:
|
|
def __init__(self):
|
|
pass
|
|
|
|
def initialize(self, environment):
|
|
self.env = environment
|
|
|
|
def shutdown(self):
|
|
pass
|
|
|
|
def get_description(self):
|
|
return _("Move review to the bottom of the screen")
|
|
|
|
def run(self):
|
|
self.env["screen"]["newCursorReview"] = {
|
|
"x": 0,
|
|
"y": self.env["screen"]["lines"] - 1,
|
|
}
|
|
self.env["runtime"]["OutputManager"].present_text(
|
|
_("Bottom"), interrupt=True, flush=False
|
|
)
|
|
|
|
def set_callback(self, callback):
|
|
pass
|