-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuninstall.sh
More file actions
executable file
·33 lines (31 loc) · 907 Bytes
/
uninstall.sh
File metadata and controls
executable file
·33 lines (31 loc) · 907 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/usr/bin/env bash
function unlink_file() {
local dest="${HOME}/${1}"
if [ -L "${dest}" ]; then rm -v "${dest}"; fi
}
unlink_file .Brewfile
unlink_file .zsh
unlink_file .zshenv
unlink_file .zprofile
unlink_file .zshrc
unlink_file .emacs.d
unlink_file .vimrc
unlink_file .gitconfig
unlink_file .gitignore
unlink_file .tmux
unlink_file .tmux.conf
unlink_file .tmux.local.conf
unlink_file .gemrc
unlink_file .irbrc
unlink_file .pryrc
unlink_file .railsrc
unlink_file .bin
unlink_file .config/bat
unlink_file .config/karabiner
unlink_file .npmrc
unlink_file .yarnrc.yml
unlink_file "Library/Preferences/pnpm/rc"
unlink_file "Library/Application Support/Code/User/settings.json"
unlink_file "Library/Application Support/Code/User/keybindings.json"
unlink_file "Library/Application Support/Google/AndroidStudio2023.1/colors"
unlink_file "Library/Application Support/Google/AndroidStudio2023.1/keymaps"