aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/pskill
diff options
context:
space:
mode:
authorGravatar Arun Prakash Jana <engineerarun@gmail.com>2020-05-06 18:41:01 +0530
committerGravatar Arun Prakash Jana <engineerarun@gmail.com>2020-05-06 18:41:01 +0530
commit4832fc5fe1297f1241310f2453b850c72743e1bd (patch)
tree47c27a2f7309e9b1a5874df55635e383e667ac71 /plugins/pskill
parentc8ecf06c515054595ac1dfa34989a3a7d26373ce (diff)
downloadnnn-4832fc5fe1297f1241310f2453b850c72743e1bd.tar.gz
Drop fzy support
Diffstat (limited to 'plugins/pskill')
-rwxr-xr-xplugins/pskill4
1 files changed, 1 insertions, 3 deletions
diff --git a/plugins/pskill b/plugins/pskill
index c23034f..063be35 100755
--- a/plugins/pskill
+++ b/plugins/pskill
@@ -2,7 +2,7 @@
# Description: Fuzzy list and kill a (zombie) process by name
#
-# Dependencies: fzf or fzy, ps
+# Dependencies: fzf, ps
#
# Note: To kill a zombie process enter "zombie"
#
@@ -24,8 +24,6 @@ if ! [ -z "$psname" ]; then
if which fzf >/dev/null 2>&1; then
fuzzy=fzf
- elif which fzy >/dev/null 2>&1; then
- fuzzy=fzy
else
exit 1
fi