Add a bin directory and a script

This commit is contained in:
2026-04-20 18:45:18 -04:00
parent 4f611ee9e1
commit 848506c881
3 changed files with 15 additions and 0 deletions

11
bin/clean-vscode.sh Executable file
View File

@@ -0,0 +1,11 @@
#!/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