From 8052f6279652809bbfbc346ae414614bd1e5beab Mon Sep 17 00:00:00 2001 From: Colin Date: Mon, 5 Feb 2024 16:31:19 +0000 Subject: [PATCH] programs: sane-wipe browser: also clear epiphany artifacts --- pkgs/additional/sane-scripts/src/sane-wipe | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/additional/sane-scripts/src/sane-wipe b/pkgs/additional/sane-scripts/src/sane-wipe index 29fdb7fa8..1a615e46e 100755 --- a/pkgs/additional/sane-scripts/src/sane-wipe +++ b/pkgs/additional/sane-scripts/src/sane-wipe @@ -13,20 +13,23 @@ help() { wipe_browser() { - # remove firefox/librewolf/chromium artifacts + # remove chromium/epiphany/firefox/librewolf artifacts rm -rf \ ~/.cache/BraveSoftware/* \ ~/.cache/chromium \ + ~/.cache/epiphany/* \ ~/.cache/librewolf/* \ ~/.cache/mozilla/firefox/* \ ~/.config/BraveSoftware/* \ ~/.config/chromium \ ~/.librewolf/default/* \ + ~/.local/share/epiphany/* \ ~/.mozilla/* \ || true # in case no matches # browsers like to stick around in the background so they can load faster sudo pkill brave || true + sudo pkill epiphany || true sudo pkill firefox || true sudo pkill librewolf || true }