Skip to content
Snippets Groups Projects
Commit 06a77715 authored by nimrod's avatar nimrod
Browse files

Removed flatpak-kill shell function, similar functionality was implemented by the flatpak CLI.

parent 3a95703d
No related branches found
No related tags found
No related merge requests found
...@@ -223,21 +223,6 @@ match_ssl_pair () { ...@@ -223,21 +223,6 @@ match_ssl_pair () {
return "$exitcode" 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 () { __run_duration () {
if [ -f "$HOME/.prerun.$$" ] if [ -f "$HOME/.prerun.$$" ]
then then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment