2019-04-24 08:07:46 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# file: modules/background.sh
|
|
|
|
# do not edit, this file will be overwritten on update
|
|
|
|
|
|
|
|
# This file is public domain in the USA and all free countries.
|
|
|
|
# Elsewhere, consider it to be WTFPLv2. (wtfpl.net/txt/copying)
|
|
|
|
#
|
2019-05-16 15:06:58 +00:00
|
|
|
#### $$VERSION$$ v0.76-1-ge8a1fd0
|
2019-04-24 08:07:46 +00:00
|
|
|
|
|
|
|
# source from commands.sh if you want ro use interactive or background jobs
|
|
|
|
|
|
|
|
######
|
|
|
|
# interactive and background functions
|
|
|
|
|
|
|
|
background() {
|
2019-04-24 08:17:29 +00:00
|
|
|
echo "${CHAT[ID]}:$2:$1" >"${TMPDIR:-.}/${copname:--}$2-back.cmd"
|
2019-04-24 08:07:46 +00:00
|
|
|
startproc "$1" "back-$2-"
|
|
|
|
}
|
|
|
|
|
|
|
|
startproc() {
|
|
|
|
killproc "$2"
|
|
|
|
local fifo="$2${copname}"
|
|
|
|
mkfifo "${TMPDIR:-.}/${fifo}"
|
|
|
|
tmux new-session -d -s "${fifo}" "$1 &>${TMPDIR:-.}/${fifo}; echo imprettydarnsuredatdisisdaendofdacmd>${TMPDIR:-.}/${fifo}"
|
|
|
|
tmux new-session -d -s "sendprocess_${fifo}" "bash $SCRIPT outproc ${CHAT[ID]} ${fifo}"
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
checkback() {
|
|
|
|
checkproc "back-$1-"
|
|
|
|
}
|
|
|
|
|
|
|
|
checkproc() {
|
2019-05-12 15:51:52 +00:00
|
|
|
tmux ls | grep -q "$1${copname}"
|
|
|
|
# shellcheck disable=SC2034
|
|
|
|
res=$?; return $?
|
2019-04-24 08:07:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
killback() {
|
|
|
|
killproc "back-$1-"
|
|
|
|
rm -f "${TMPDIR:-.}/${copname}$1-back.cmd"
|
|
|
|
}
|
|
|
|
|
|
|
|
killproc() {
|
|
|
|
local fifo="$1${copname}"
|
|
|
|
(tmux kill-session -t "${fifo}"; echo imprettydarnsuredatdisisdaendofdacmd>"${TMPDIR:-.}/${fifo}"; tmux kill-session -t "sendprocess_${fifo}"; rm -f -r "${TMPDIR:-.}/${fifo}")2>/dev/null
|
|
|
|
}
|
|
|
|
|
|
|
|
inproc() {
|
|
|
|
tmux send-keys -t "$copname" "${MESSAGE[0]} ${URLS[*]}
|
|
|
|
"
|
|
|
|
}
|