From: Chris Koeritz Date: Wed, 10 Oct 2018 19:54:53 +0000 (-0400) Subject: new script to take down berserk witcher 3 game X-Git-Tag: 2.140.115^2~93 X-Git-Url: https://feistymeow.org/gitweb/?p=feisty_meow.git;a=commitdiff_plain;h=17cbeaa5bf5efd697c3d50119b4b9fc4e0d98b2f new script to take down berserk witcher 3 game --- diff --git a/scripts/customize/fred/scripts/games/zap_witcher.sh b/scripts/customize/fred/scripts/games/zap_witcher.sh new file mode 100644 index 00000000..e3901b22 --- /dev/null +++ b/scripts/customize/fred/scripts/games/zap_witcher.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +# windows compatible process killer for any stray processes started as +# "witcher" something. + +source $FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh + +procid="$( psa witcher | tail -n 1 | awk '{ print $1; }' )" + +if [ ! -z "$procid" ]; then + taskkill.exe /f /pid ${procid} +fi