use full module path to not collide with other software, thanks to samuel
This commit is contained in:
parent
3469c963ca
commit
e03a7183e4
docu
setup.pysrc/fenrir
brailleDriver
commands
command_template.py
commands
add_word_to_spell_check.pyattribute_cursor.pybookmark_1.pybookmark_10.pybookmark_2.pybookmark_3.pybookmark_4.pybookmark_5.pybookmark_6.pybookmark_7.pybookmark_8.pybookmark_9.pybraille_flush.pybraille_pan_left.pybraille_pan_right.pybraille_return_to_cursor.pyclear_bookmark_1.pyclear_bookmark_10.pyclear_bookmark_2.pyclear_bookmark_3.pyclear_bookmark_4.pyclear_bookmark_5.pyclear_bookmark_6.pyclear_bookmark_7.pyclear_bookmark_8.pyclear_bookmark_9.pyclear_clipboard.pyclear_window_application.pycopy_marked_to_clipboard.pycurr_clipboard.pycurr_screen.pycurr_screen_after_cursor.pycurr_screen_before_cursor.pycursor_column.pycursor_lineno.pycursor_position.pycursor_read_to_end_of_line.pydate.pydec_alsa_volume.pydec_sound_volume.pydec_speech_pitch.pydec_speech_rate.pydec_speech_volume.pyexit_review.pyexport_clipboard_to_file.pyexport_clipboard_to_x.pyfirst_clipboard.pyforward_keypress.pyimport_clipboard_from_file.pyinc_alsa_volume.pyinc_sound_volume.pyinc_speech_pitch.pyinc_speech_rate.pyinc_speech_volume.pyindent_curr_line.pylast_clipboard.pylast_incoming.pymarked_text.pynext_clipboard.pypaste_clipboard.pypresent_first_line.pypresent_last_line.pyprev_clipboard.pyquit_fenrir.pyremove_marks.pyremove_word_from_spell_check.pyreview_bottom.pyreview_curr_char.pyreview_curr_char_phonetic.pyreview_curr_line.pyreview_curr_word.pyreview_curr_word_phonetic.pyreview_down.pyreview_line_begin.pyreview_line_end.pyreview_line_first_char.pyreview_line_last_char.pyreview_next_char.pyreview_next_char_phonetic.pyreview_next_line.pyreview_next_word.pyreview_next_word_phonetic.pyreview_prev_char.pyreview_prev_char_phonetic.pyreview_prev_line.pyreview_prev_word.pyreview_prev_word_phonetic.pyreview_top.pyreview_up.pyset_bookmark_1.pyset_bookmark_10.pyset_bookmark_2.pyset_bookmark_3.pyset_bookmark_4.py
@ -1517,7 +1517,7 @@ Commands are python files with a special scheme. You can assign them to a shortc
|
||||
Good Examples: ["date.py"](https///github.com/chrys87/fenrir/blob/master/src/fenrir/commands/commands/date.py) (announce the Date), ["shut_up.py"](https///github.com/chrys87/fenrir/blob/master/src/fenrir/commands/commands/shut_up.py) (interrupt output)
|
||||
the basic scheme for a command is as follows:
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -1273,7 +1273,7 @@ Commands are python files with a special scheme. You can assign them to a shortc
|
||||
Good Examples: [[https://github.com/chrys87/fenrir/blob/master/src/fenrir/commands/commands/date.py|"date.py"]] (announce the Date), [[https://github.com/chrys87/fenrir/blob/master/src/fenrir/commands/commands/shut_up.py|"shut_up.py"]] (interrupt output)
|
||||
the basic scheme for a command is as follows:
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
4
setup.py
4
setup.py
@ -78,8 +78,8 @@ setup(
|
||||
author_email="chrysg@linux-a11y.org",
|
||||
|
||||
# Packages
|
||||
packages=find_packages('src/fenrir'),
|
||||
package_dir={'': 'src/fenrir'},
|
||||
packages=find_packages('src'),
|
||||
package_dir={'': 'src'},
|
||||
scripts=['src/fenrir/fenrir','src/fenrir/fenrir-daemon'],
|
||||
|
||||
# Include additional files into the package
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
|
||||
class driver():
|
||||
def __init__(self):
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
|
||||
class driver():
|
||||
def __init__(self):
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,8 +4,8 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from utils import word_utils
|
||||
from fenrir.core import debug
|
||||
from fenrir.utils import word_utils
|
||||
import string
|
||||
initialized = False
|
||||
try:
|
||||
|
@ -4,8 +4,8 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from utils import screen_utils
|
||||
from fenrir.core import debug
|
||||
from fenrir.utils import screen_utils
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,9 +4,9 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from utils import mark_utils
|
||||
from utils import line_utils
|
||||
from fenrir.core import debug
|
||||
from fenrir.utils import mark_utils
|
||||
from fenrir.utils import line_utils
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,9 +4,9 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from utils import mark_utils
|
||||
from utils import line_utils
|
||||
from fenrir.core import debug
|
||||
from fenrir.utils import mark_utils
|
||||
from fenrir.utils import line_utils
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,9 +4,9 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from utils import mark_utils
|
||||
from utils import line_utils
|
||||
from fenrir.core import debug
|
||||
from fenrir.utils import mark_utils
|
||||
from fenrir.utils import line_utils
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,9 +4,9 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from utils import mark_utils
|
||||
from utils import line_utils
|
||||
from fenrir.core import debug
|
||||
from fenrir.utils import mark_utils
|
||||
from fenrir.utils import line_utils
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,9 +4,9 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from utils import mark_utils
|
||||
from utils import line_utils
|
||||
from fenrir.core import debug
|
||||
from fenrir.utils import mark_utils
|
||||
from fenrir.utils import line_utils
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,9 +4,9 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from utils import mark_utils
|
||||
from utils import line_utils
|
||||
from fenrir.core import debug
|
||||
from fenrir.utils import mark_utils
|
||||
from fenrir.utils import line_utils
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,9 +4,9 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from utils import mark_utils
|
||||
from utils import line_utils
|
||||
from fenrir.core import debug
|
||||
from fenrir.utils import mark_utils
|
||||
from fenrir.utils import line_utils
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,9 +4,9 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from utils import mark_utils
|
||||
from utils import line_utils
|
||||
from fenrir.core import debug
|
||||
from fenrir.utils import mark_utils
|
||||
from fenrir.utils import line_utils
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,9 +4,9 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from utils import mark_utils
|
||||
from utils import line_utils
|
||||
from fenrir.core import debug
|
||||
from fenrir.utils import mark_utils
|
||||
from fenrir.utils import line_utils
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,9 +4,9 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from utils import mark_utils
|
||||
from utils import line_utils
|
||||
from fenrir.core import debug
|
||||
from fenrir.utils import mark_utils
|
||||
from fenrir.utils import line_utils
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,8 +4,8 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from utils import mark_utils
|
||||
from fenrir.core import debug
|
||||
from fenrir.utils import mark_utils
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,8 +4,8 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from utils import mark_utils
|
||||
from fenrir.core import debug
|
||||
from fenrir.utils import mark_utils
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,8 +4,8 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from utils import mark_utils
|
||||
from fenrir.core import debug
|
||||
from fenrir.utils import mark_utils
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,8 +4,8 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from utils import line_utils
|
||||
from fenrir.core import debug
|
||||
from fenrir.utils import line_utils
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
import datetime
|
||||
|
||||
class command():
|
||||
|
@ -11,7 +11,7 @@ try:
|
||||
except:
|
||||
pass
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
import math
|
||||
|
||||
class command():
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
import math
|
||||
|
||||
class command():
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
import math
|
||||
|
||||
class command():
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
import math
|
||||
|
||||
class command():
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
import os
|
||||
|
||||
class command():
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
import subprocess, os
|
||||
from subprocess import Popen, PIPE
|
||||
import _thread
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,8 +4,8 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from utils import mark_utils
|
||||
from fenrir.core import debug
|
||||
from fenrir.utils import mark_utils
|
||||
import os
|
||||
|
||||
class command():
|
||||
|
@ -11,7 +11,7 @@ try:
|
||||
except:
|
||||
pass
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
import math
|
||||
|
||||
class command():
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
import math
|
||||
|
||||
class command():
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
import math
|
||||
|
||||
class command():
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
import math
|
||||
|
||||
class command():
|
||||
|
@ -4,8 +4,8 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from utils import line_utils
|
||||
from fenrir.core import debug
|
||||
from fenrir.utils import line_utils
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,8 +4,8 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from utils import mark_utils
|
||||
from fenrir.core import debug
|
||||
from fenrir.utils import mark_utils
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
import time
|
||||
|
||||
class command():
|
||||
|
@ -4,8 +4,8 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from utils import line_utils
|
||||
from fenrir.core import debug
|
||||
from fenrir.utils import line_utils
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,8 +4,8 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from utils import line_utils
|
||||
from fenrir.core import debug
|
||||
from fenrir.utils import line_utils
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,8 +4,8 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from utils import word_utils
|
||||
from fenrir.core import debug
|
||||
from fenrir.utils import word_utils
|
||||
import string
|
||||
initialized = False
|
||||
try:
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,8 +4,8 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from utils import char_utils
|
||||
from fenrir.core import debug
|
||||
from fenrir.utils import char_utils
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,8 +4,8 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from utils import char_utils
|
||||
from fenrir.core import debug
|
||||
from fenrir.utils import char_utils
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,8 +4,8 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from utils import line_utils
|
||||
from fenrir.core import debug
|
||||
from fenrir.utils import line_utils
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,8 +4,8 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from utils import word_utils
|
||||
from fenrir.core import debug
|
||||
from fenrir.utils import word_utils
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,9 +4,9 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from utils import word_utils
|
||||
from utils import char_utils
|
||||
from fenrir.core import debug
|
||||
from fenrir.utils import word_utils
|
||||
from fenrir.utils import char_utils
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,8 +4,8 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from utils import char_utils
|
||||
from fenrir.core import debug
|
||||
from fenrir.utils import char_utils
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,8 +4,8 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from utils import char_utils
|
||||
from fenrir.core import debug
|
||||
from fenrir.utils import char_utils
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,8 +4,8 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from utils import char_utils
|
||||
from fenrir.core import debug
|
||||
from fenrir.utils import char_utils
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,9 +4,9 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from utils import line_utils
|
||||
from utils import char_utils
|
||||
from fenrir.core import debug
|
||||
from fenrir.utils import line_utils
|
||||
from fenrir.utils import char_utils
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,8 +4,8 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from utils import char_utils
|
||||
from fenrir.core import debug
|
||||
from fenrir.utils import char_utils
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,8 +4,8 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from utils import char_utils
|
||||
from fenrir.core import debug
|
||||
from fenrir.utils import char_utils
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,8 +4,8 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from utils import char_utils
|
||||
from fenrir.core import debug
|
||||
from fenrir.utils import char_utils
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,8 +4,8 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from utils import line_utils
|
||||
from fenrir.core import debug
|
||||
from fenrir.utils import line_utils
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,8 +4,8 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from utils import word_utils
|
||||
from fenrir.core import debug
|
||||
from fenrir.utils import word_utils
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,9 +4,9 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from utils import word_utils
|
||||
from utils import char_utils
|
||||
from fenrir.core import debug
|
||||
from fenrir.utils import word_utils
|
||||
from fenrir.utils import char_utils
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,8 +4,8 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from utils import char_utils
|
||||
from fenrir.core import debug
|
||||
from fenrir.utils import char_utils
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,8 +4,8 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from utils import char_utils
|
||||
from fenrir.core import debug
|
||||
from fenrir.utils import char_utils
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,8 +4,8 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from utils import line_utils
|
||||
from fenrir.core import debug
|
||||
from fenrir.utils import line_utils
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,8 +4,8 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from utils import word_utils
|
||||
from fenrir.core import debug
|
||||
from fenrir.utils import word_utils
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,9 +4,9 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from utils import word_utils
|
||||
from utils import char_utils
|
||||
from fenrir.core import debug
|
||||
from fenrir.utils import word_utils
|
||||
from fenrir.utils import char_utils
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,8 +4,8 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from utils import char_utils
|
||||
from fenrir.core import debug
|
||||
from fenrir.utils import char_utils
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,8 +4,8 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from utils import char_utils
|
||||
from fenrir.core import debug
|
||||
from fenrir.utils import char_utils
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Fenrir TTY screen reader
|
||||
# By Chrys, Storm Dragon, and contributers.
|
||||
|
||||
from core import debug
|
||||
from fenrir.core import debug
|
||||
|
||||
class command():
|
||||
def __init__(self):
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user