2017-01-30 16:45:01 +01:00
# Fenrir
2017-02-20 12:21:30 +11:00
A TTY screenreader for Linux.
2017-08-12 20:38:03 +10:00
In theory it's not just limited to Linux. but i currently only provide drivers for that since I do not have another system here. If you want to help, or write drivers to make it work on other systems, just let me know.
2016-12-30 19:54:27 +01:00
This software is licensed under the LGPL v3 .
2016-07-05 11:16:34 +02:00
2017-01-30 16:50:22 +01:00
# Requirements (core)
2017-08-12 20:38:03 +10:00
- Linux (currently only screen and input drivers available)
2017-01-30 16:45:01 +01:00
- python3 >= 3.3
2017-07-07 21:44:49 +02:00
- python-configargparse
2017-01-30 16:50:07 +01:00
- screen, input, speech, sound or braille drivers see "Features, Drivers, Extras".
2016-07-07 14:37:10 +02:00
2017-08-04 12:46:52 +02:00
# Features, Drivers, Extras, Dependencies
2017-01-30 16:46:33 +01:00
# Input Drivers:
2017-02-23 11:33:08 +01:00
1. "evdevDriver" input driver for linux evdev
2017-02-13 21:42:31 +01:00
- python-evdev >=0.6.3
2017-07-07 21:44:49 +02:00
- python-pyudev
2017-03-12 12:18:36 +11:00
- This is commonly referred to as python3-evdev by your distribution
2017-01-30 16:45:01 +01:00
- loaded uinput kernel module
- ReadWrite permission
- /dev/input
- /dev/uinput
2017-01-30 16:47:13 +01:00
2017-01-30 16:46:33 +01:00
# Screen Drivers:
2017-02-23 11:33:08 +01:00
1. "vcsaDriver" screen driver for linux VCSA devices
- python-dbus
2017-02-23 11:43:31 +01:00
- Read permission to the following files and services:
2017-01-30 16:45:01 +01:00
- /sys/devices/virtual/tty/tty0/active
2017-07-23 21:25:00 +02:00
- /dev/tty[1-64]
2017-01-30 16:45:01 +01:00
- /dev/vcsa[1-64]
2017-08-03 23:13:43 +02:00
- read logind DBUS
2017-01-30 16:47:13 +01:00
2017-01-30 16:46:33 +01:00
# Speech Drivers:
2017-08-12 20:38:03 +10:00
1. "EspeakDriver" speech driver for Espeak:
2016-11-16 11:59:16 +01:00
- python-espeak
2017-08-12 20:38:03 +10:00
- "speechdDriver" speech driver for Speech-dispatcher:
- Speech-dispatcher
2016-11-16 11:59:16 +01:00
- python-speechd
2017-02-23 11:33:08 +01:00
2. "dummyDriver" speech driver for debugging
2017-01-30 16:47:13 +01:00
2017-01-30 16:46:33 +01:00
# Braille Drivers:
2017-08-12 20:38:03 +10:00
1. "BrlttyDriver" braille driver (WIP):
2016-11-16 11:59:16 +01:00
- brltty (configured and running)
- python-brlapi
2017-08-12 20:38:03 +10:00
2. "dummyDriver" Braille driver for debugging
2017-01-30 16:47:13 +01:00
2017-01-30 16:46:33 +01:00
# Sound Drivers:
2017-02-23 11:33:08 +01:00
1. "genericDriver" sound driver for sound as subprocess:
2017-08-12 20:38:03 +10:00
- Sox
2017-02-23 11:33:08 +01:00
2. "gstreamerDriver" sound driver for gstreamer
2017-02-13 21:42:31 +01:00
- gstreamer >=1.0
2016-11-16 11:59:16 +01:00
- GLib
2017-02-23 11:33:08 +01:00
3. "dummyDriver" sound driver for debugging
2017-01-30 16:47:13 +01:00
2017-08-12 20:38:03 +10:00
# Extras:
2017-02-23 11:43:31 +01:00
1. spellchecker
2016-11-16 11:59:16 +01:00
- python-pyenchant
2017-08-12 20:38:03 +10:00
- aspell-YourLanguageCode (example aspell-en for us English)
2. Unix daemon (also needed for Systemd):
2016-11-16 11:59:16 +01:00
- python-daemonize
2017-02-26 18:39:19 -06:00
3. Modify system volume:
- pyalsaaudio (needs libasound2's headers).
2016-09-16 11:50:53 +02:00
2016-07-05 11:18:35 +02:00
# installation
2016-11-07 10:49:32 +01:00
- Archlinux: PKGBUILD in AUR
2017-02-17 10:07:42 +01:00
- Manual: run install.sh and uninstall.sh as root
2017-02-20 12:21:30 +11:00
- you also can just run it from Git without installing:
2016-11-07 10:49:32 +01:00
You can just run the following as root:
2017-02-23 11:45:05 +01:00
if you are in Fenrir Git rootfolder:
cd src/fenrir/
2016-11-07 10:49:32 +01:00
sudo ./fenrir
2017-02-20 12:21:30 +11:00
Settings "settings.conf" is located in the "config" directory or after installation in /etc/fenrir/settings.
2017-08-12 20:38:03 +10:00
Take care to use drivers from the config matching your installed drivers.
2016-11-16 11:59:16 +01:00
By default it uses:
2017-01-30 16:45:01 +01:00
- sound driver: genericDriver (via sox, could configured in settings.conf)
- speech driver: speechdDriver
- braille driver: brlttyDriver (WIP)
- input driver: evdevDriver
2017-07-25 13:36:46 +02:00
# Documentation
2017-08-12 20:38:03 +10:00
You can see all information on the Wiki:
2017-07-25 13:36:46 +02:00
https://wiki.linux-a11y.org/doku.php?id=fenrir_user_manual& s[]=fenrir