From 06a77715303d3d0184d71a090bcaa724e6ea64df Mon Sep 17 00:00:00 2001 From: Adar Nimrod <nimrod@shore.co.il> Date: Tue, 26 Feb 2019 07:16:13 +0200 Subject: [PATCH] Removed flatpak-kill shell function, similar functionality was implemented by the flatpak CLI. --- .bashrc | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/.bashrc b/.bashrc index 2675890..25ccd4b 100644 --- a/.bashrc +++ b/.bashrc @@ -223,21 +223,6 @@ match_ssl_pair () { return "$exitcode" } -flatpak-kill () { - if [ "$#" -lt 1 ] - then - echo "You must specify application name." >> /dev/stderr - false - else - name="$1" - shift - for pid in $(flatpak ps --columns=application,pid | awk "tolower(\$2) ~ /$name/ {print \$3}") - do - pkill "$@" "$pid" - done - fi -} - __run_duration () { if [ -f "$HOME/.prerun.$$" ] then -- GitLab