From 9b19480228d8421c3987a634a602012c953a993e Mon Sep 17 00:00:00 2001 From: neodarz Date: Thu, 5 Sep 2019 07:48:16 +0200 Subject: Add some scripts --- dotfiles/scripts/weechat_notify.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 dotfiles/scripts/weechat_notify.sh (limited to 'dotfiles/scripts/weechat_notify.sh') diff --git a/dotfiles/scripts/weechat_notify.sh b/dotfiles/scripts/weechat_notify.sh new file mode 100755 index 0000000..49bef0c --- /dev/null +++ b/dotfiles/scripts/weechat_notify.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +if [[ $1 == "start" ]]; then + python2 ~/.scripts/pyrnotify.py 4323 & + ssh -fNT -R 4323:localhost:4323 neodarz@neodarz.net -p 19977 +elif [[ $1 == "stop" ]]; then + sudo kill -9 $(ps aux | grep pyrnotify.py | awk '{print $2}') + sudo kill -9 $(ps aux | grep " ssh -fNT -R 4323:localhost:4323 neodarz@neodarz.net -p 19977" | awk '{print $2}') +fi + + + -- cgit v1.2.1