aboutsummaryrefslogtreecommitdiff
path: root/scripts/cht.sh
diff options
context:
space:
mode:
authorPolesznyák Márk <contact@pml68.dev>2025-11-29 01:45:07 +0100
committerPolesznyák Márk <contact@pml68.dev>2025-12-29 14:50:02 +0100
commitbf7347380207d80183ce80ae6547ef08fa579c6a (patch)
treeec64896997e4bd76d89738f0b156dde7423ff107 /scripts/cht.sh
parentfeat: initial commit (diff)
downloaddotfiles-bf7347380207d80183ce80ae6547ef08fa579c6a.tar.gz
feat: add scripts, TARGET variable for Makefile
Diffstat (limited to '')
-rwxr-xr-xscripts/cht.sh15
1 files changed, 15 insertions, 0 deletions
diff --git a/scripts/cht.sh b/scripts/cht.sh
new file mode 100755
index 0000000..6c27d29
--- /dev/null
+++ b/scripts/cht.sh
@@ -0,0 +1,15 @@
+#!/bin/sh
+selected=`cat ~/.tmux-langs ~/.tmux-coreutils | fzf`
+if [[ -z $selected ]]; then
+ exit 0
+fi
+
+read -p "Enter Query: " query
+
+if grep -qs "$selected" ~/.tmux-langs; then
+ query=`echo $query | tr ' ' '+'`
+ tmux neww bash -c "curl cht.sh/$selected/$query & while [ : ]; do sleep 1; done"
+else
+ query=`echo $query | tr ' ' '+'`
+ tmux neww bash -c "curl cht.sh/$selected~$query & while [ : ]; do sleep 1; done"
+fi