aboutsummaryrefslogtreecommitdiff
path: root/reset-gpt
diff options
context:
space:
mode:
Diffstat (limited to 'reset-gpt')
-rwxr-xr-xreset-gpt17
1 files changed, 0 insertions, 17 deletions
diff --git a/reset-gpt b/reset-gpt
deleted file mode 100755
index 69131a7..0000000
--- a/reset-gpt
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/bash
-
-# Close ChatGPT tabs only
-pkill -f "firefox.*chatgpt.com" 2>/dev/null
-
-PROFILE=$(ls -d ~/.mozilla/firefox/*.default*)
-
-# Delete all ChatGPT site storage
-rm -rf "$PROFILE/storage/default/https+++chatgpt.com"
-rm -rf "$PROFILE/storage/default/https+++chat.openai.com"
-
-# Clear Firefox HTTP cache
-rm -rf "$PROFILE/cache2/*"
-
-# Relaunch Firefox
-nohup firefox-esr >/dev/null 2>&1 &
-