Files
jbashrc/bin/clean-vscode.sh

12 lines
264 B
Bash
Raw Normal View History

2026-04-20 18:45:18 -04:00
#!/bin/bash
# Use this script when vscode gets itself into a broken state to reset it.
set -e
if pgrep -x "code" > /dev/null; then
echo "VS Code is running. Quit it first."
exit 1
fi
rm -rf /home/jyelon/.config/Code/User
/home/jyelon/jbashrc/install.sh