-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
executable file
·49 lines (37 loc) · 1.42 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# specify the Talon user directory depending on operating system
ifeq ($(OS),Windows_NT)
TALON_USER_DIR = $(USERPROFILE)\AppData\Roaming\talon\user
else
TALON_USER_DIR = ~/.talon/user
endif
public:
curl "https://talonvoice.com/dl/latest/talon-linux.tar.xz" --output talon.tar.xz
tar -vxf talon.tar.xz
rm -f talon.tar.xz
mv talon/ ~/talon
mkdir -p $(TALON_USER_DIR)
clone:
git clone https://github.com/C-Loftus/knausj_talon $(TALON_USER_DIR)/knausj_talon
git clone https://github.com/C-Loftus/colton_talon $(TALON_USER_DIR)/colton_talon
git clone https://github.com/paul-schaaf/talon-filetree-commands/ $(TALON_USER_DIR)/filetree
git clone "https://github.com/wolfmanstout/talon-gaze-ocr" $(TALON_USER_DIR)/gaze-ocr
git clone "https://github.com/C-Loftus/private-talon" $(TALON_USER_DIR)/private-talon
# git clone https://github.com/tararoys/dense-mouse-grid $(TALON_USER_DIR)/dense-mouse-grid
fetch: pull
cd $(TALON_USER_DIR)/knausj_talon; git fetch upstream main
.PHONY: update
update:
cd update; ./update.sh
windows:
# mimic xbox controller to get rid of direct input and get xinput for talon. Talon uses gilrs and needs xinput
echo "https://github.com/csutorasa/XOutput"
scoop install imagemagick
scoop install ffmpeg
scoop install pandoc
scoop install mpv
install:
npm run install --prefix ./browser/js-sender
build: install
npm run build --prefix ./browser/js-sender
config:
bash -c "cp -r ./.vscode/ ../."