Added Text to Speach system. This currently doesnt' support OSX.

This commit is contained in:
James Patrick 2019-09-21 15:04:38 -04:00
parent 22fb953c36
commit 6bba91cd5c
2 changed files with 5 additions and 0 deletions

View File

@ -2,6 +2,7 @@ SRC := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
include ../lib/shared.mk
TARGET := $(XDG_DIR)/tridactyl
SCRIPTS_TARGET := ~/.local/share/tridactyl/scripts
install: | init update
@ -10,6 +11,7 @@ init:
ifeq ($(shell $(call cmd_exist,firefox) || $(IS_MAC) ; echo $$? ), 0)
$(info => Setting up Tridacyl)
$(mk_link) $(SRC) $(TARGET)
$(mk_link) $(SRC)/scripts $(SCRIPTS_TARGET)
else
$(report) warn "This doesn't seem to be an env for Tridactyl. Skipping."
endif
@ -19,3 +21,4 @@ update:
remove:
$(info => Remvoing tridactyl )
$(rm_link) $(TARGET)
$(rm_link) $(SCRIPTS_TARGET)

View File

@ -23,6 +23,8 @@ bind n findnext 1
bind N findnext -1
bind ,<Space> nohlsearch
unbind ;r
bind ;r composite hint -pipe * textContent | shellescape | exclaim_quiet ./scripts/speak
colorscheme onedark
" This will have to do until someone writes us a nice syntax file :)
" vim: set filetype=vim: