Explorar el Código

add script to remove old symlinks

Josh Bicking hace 7 años
padre
commit
7eef827986
Se han modificado 1 ficheros con 11 adiciones y 0 borrados
  1. 11 0
      rmdots.sh

+ 11 - 0
rmdots.sh

@@ -0,0 +1,11 @@
+#!/bin/bash
+
+DIR=$(pwd)
+
+for i in vimrc vim bashrc tmux.conf zshrc emacs.d dircolors compton.conf .config/nvim .antigen.zsh .xmonad .xmobarrc .local/share/applications/emacs-client.desktop
+do
+	if [ -L $HOME/$i ]
+	then
+		rm -i $HOME/$i
+	fi
+done