fenrir/TODO

53 lines
2.0 KiB
Plaintext
Raw Normal View History

ToDos in Priority order:
2016-07-05 04:17:24 -04:00
2016-07-07 18:10:36 -04:00
https://docs.python.org/2/library/termios.html
- shortcut handling
2016-07-05 03:55:29 -04:00
- implement command structure (next_[line,word,char], prev_[line,word,char], and others
- Settings (make it configureable)
- beeps (sound Icons)
2016-07-05 03:55:29 -04:00
- implement braille
http://mielke.cc/brltty/doc/Manual-BrlAPI/English/BrlAPI.html
2016-07-05 04:50:58 -04:00
https://git.gnome.org/browse/orca/tree/src/orca/braille.py
2016-07-05 03:55:29 -04:00
2016-07-05 04:17:24 -04:00
- implement speechdriver generic (say)
2016-07-05 04:24:45 -04:00
- autostart systemd
2016-07-05 05:43:17 -04:00
https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7/html/System_Administrators_Guide/sect-Managing_Services_with_systemd-Unit_Files.html
2016-07-05 05:23:00 -04:00
- translateable
2016-07-05 04:24:45 -04:00
2016-07-05 17:27:04 -04:00
-------------DONE--------------------------------
-- move from VCS to VCSA and parese the Attributes
http://linux.die.net/man/4/vcsa
http://man.cx/vcsa(4)/de
http://manpages.org/display-vcsa/7
https://en.wikipedia.org/wiki/Virtual_console
every second byte is a attribute others are text. fast way: c[::2],c[1::2]
http://manpages.ubuntu.com/manpages/precise/de/man4/vcs.4.html
https://docs.python.org/3/library/fcntl.html
http://rodrigorivas.serveblog.net/en/imagenes-desde-vt-con-vcsa/
- implement speechdriver espeak
https://github.com/relsi/python-espeak
- detect collumns in TTYs automaticaly.
it seems we have this info in vcsa
- get current cursor
2016-07-05 19:13:28 -04:00
- implement speechdriver speechd
https://git.gnome.org/browse/orca/tree/src/orca/speech.py
https://git.gnome.org/browse/orca/tree/src/orca/speechdispatcherfactory.py
http://devel.freebsoft.org/doc/speechd/speech-dispatcher.html#Client-Programming
- autodetect current TTY maybe with (PAM or a sys folder)
cat /sys/devices/virtual/tty/tty0/active
http://serverfault.com/questions/306854/how-to-find-out-the-currently-active-linux-virtual-terminal-while-connected-via
2016-07-05 19:13:28 -04:00
- debugging
2016-07-07 18:10:36 -04:00
- threading ReadContent, ReadShortcuts, executeCommands, listenNewTTYsForListen, controllThread (main)
- Input
http://python-evdev.readthedocs.io/en/latest/tutorial.html
http://stackoverflow.com/questions/12384772/how-can-i-capture-mouseevents-and-keyevents-using-python-in-background-on-linux
maybe TTY in RAW MODE