update readme

This commit is contained in:
chrys 2016-10-02 02:43:31 +02:00
parent 988672d2d9
commit e84956e48a
2 changed files with 5 additions and 3 deletions

View File

@ -22,6 +22,8 @@ ReadWrite permission
- python-pyenchant for spell check functionality - python-pyenchant for spell check functionality
# installation # installation
Currently there is no setupscript (sorry). But you can just run src/fenrir-package/fenrir.py as root or setup the needed permissions Currently there is no setupscript (sorry). But you can just run as root or setup needed permission
cd src/fenrir-package/
sudo ./fenrir.py

View File

@ -4,14 +4,14 @@
# Fenrir TTY screen reader # Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers. # By Chrys, Storm Dragon, and contributers.
import os, sys, signal, time import os, sys, signal, time, inspect
if not os.getcwd() in sys.path: if not os.getcwd() in sys.path:
sys.path.append(os.getcwd()) sys.path.append(os.getcwd())
from core import settingsManager from core import settingsManager
from core import debug from core import debug
print(inspect.stack())
class fenrir(): class fenrir():
def __init__(self): def __init__(self):
try: try: