From 5de83552ad8cb87768df9d7541404cc1464a058d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20La=C3=ADn?= Date: Sun, 3 Nov 2024 23:52:33 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(fish):=20new=20function:=20cle?= =?UTF-8?q?an=20cache?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .config/fish/functions/clean.fish | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .config/fish/functions/clean.fish diff --git a/.config/fish/functions/clean.fish b/.config/fish/functions/clean.fish new file mode 100644 index 00000000..a790a1f9 --- /dev/null +++ b/.config/fish/functions/clean.fish @@ -0,0 +1,8 @@ +function clean + sudo paccache -rk1 + sudo paccache -ruk0 + deleteOrphans + cargo cache -a + pnpm store prune + sudo docker system prune -a +end