save
This commit is contained in:
12
scripts/.scripts/tmux-cht-command
Normal file
12
scripts/.scripts/tmux-cht-command
Normal file
@@ -0,0 +1,12 @@
|
||||
man
|
||||
ls
|
||||
grep
|
||||
cp
|
||||
mv
|
||||
rm
|
||||
ssh
|
||||
git
|
||||
stow
|
||||
docker
|
||||
docker-compose
|
||||
make
|
||||
8
scripts/.scripts/tmux-cht-lang
Normal file
8
scripts/.scripts/tmux-cht-lang
Normal file
@@ -0,0 +1,8 @@
|
||||
golang
|
||||
c
|
||||
cpp
|
||||
lua
|
||||
python
|
||||
tmux
|
||||
bash
|
||||
zsh
|
||||
14
scripts/.scripts/tmux-cht.sh
Executable file
14
scripts/.scripts/tmux-cht.sh
Executable file
@@ -0,0 +1,14 @@
|
||||
#!/usr/bin/env bash
|
||||
selected=`cat ~/.scripts/tmux-cht-lang ~/.scripts/tmux-cht-command | fzf`
|
||||
if [[ -z $selected ]]; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
read -p "Enter Query: " query
|
||||
|
||||
if grep -qs "$selected" ~/.tmux-cht-languages; then
|
||||
query=`echo $query | tr ' ' '+'`
|
||||
tmux neww bash -c "echo \"curl cht.sh/$selected/$query/\" & curl cht.sh/$selected/$query & while [ : ]; do sleep 1; done"
|
||||
else
|
||||
tmux neww bash -c "curl -s cht.sh/$selected~$query | less"
|
||||
fi
|
||||
Reference in New Issue
Block a user