Skip to content

Commit

Permalink
Also restart krunner on uninstall
Browse files Browse the repository at this point in the history
Thanks @veger
  • Loading branch information
alex1701c committed Jun 30, 2024
1 parent c398574 commit 0759f2b
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions uninstall.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,10 @@
set -e
cd build
sudo make uninstall

# KRunner needs to be restarted for the changes to be applied
krunner_version=$(krunner --version | grep -oP "(?<=krunner )\d+")
if pgrep -x krunner > /dev/null
then
kquitapp"$krunner_version" krunner
fi

0 comments on commit 0759f2b

Please sign in to comment.