From e8b9f41910501009cecdd7fd13de77c73ddf9fc4 Mon Sep 17 00:00:00 2001 From: neodarz Date: Wed, 13 Sep 2017 00:19:46 +0200 Subject: Add some alias with scripts --- scripts/.scripts/notify | 1 + scripts/.scripts/weechat_notify.sh | 12 ++++++++++++ 2 files changed, 13 insertions(+) create mode 100755 scripts/.scripts/notify create mode 100755 scripts/.scripts/weechat_notify.sh (limited to 'scripts') diff --git a/scripts/.scripts/notify b/scripts/.scripts/notify new file mode 100755 index 0000000..6445914 --- /dev/null +++ b/scripts/.scripts/notify @@ -0,0 +1 @@ +$@ ; twmnc -t "$1" -c "Job end !" diff --git a/scripts/.scripts/weechat_notify.sh b/scripts/.scripts/weechat_notify.sh new file mode 100755 index 0000000..e2b28af --- /dev/null +++ b/scripts/.scripts/weechat_notify.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +if [[ $1 == "start" ]]; then + python2 /home/neodarz/Code/weechat_notify/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