12 lines
264 B
Bash
12 lines
264 B
Bash
|
|
#!/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
|