Skip to content

Commit

Permalink
Floorp: fix not uninstalling due to an apt quirk/functionality
Browse files Browse the repository at this point in the history
  • Loading branch information
theofficialgman committed Mar 31, 2024
1 parent ff88917 commit 9da2d58
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions apps/Floorp/uninstall
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
#!/bin/bash

purge_packages || exit 1

#if the user uninstalls floorp through pi-apps they expect it to actually be removed
#without the following line this will never be the case since floorp provides www-browser and man-db suggests www-browser and distros depend on man-db
#apt autoremove will not remove packages that are suggested or recommended and are currently installed
package_installed floorp && sudo apt purge -y --autoremove floorp | less_apt
true

0 comments on commit 9da2d58

Please sign in to comment.