Update tmux and add local bins
This commit is contained in:
parent
e58102cf1a
commit
f88286d60b
13 changed files with 184 additions and 3 deletions
16
local/bin/talon_state.sh
Executable file
16
local/bin/talon_state.sh
Executable file
|
|
@ -0,0 +1,16 @@
|
|||
#!/bin/sh
|
||||
|
||||
if [ x = x"$1" ]; then
|
||||
echo "wrong"
|
||||
exit 1
|
||||
fi
|
||||
if [ "wake" = "$1" ]; then
|
||||
echo 'actions.speech.enable()' | ~/.talon/bin/repl
|
||||
exit 0
|
||||
fi
|
||||
if [ "sleep" = "$1" ]; then
|
||||
echo 'actions.speech.disable()' | ~/.talon/bin/repl
|
||||
exit 0
|
||||
fi
|
||||
echo "what?"
|
||||
exit 1
|
||||
Loading…
Add table
Add a link
Reference in a new issue