diff --git a/broken-links-checker.sh b/broken-links-checker.sh deleted file mode 100755 index 5bc1dee3a..000000000 --- a/broken-links-checker.sh +++ /dev/null @@ -1,18 +0,0 @@ -#!/bin/bash -# -################################################################################################################## -# Written to be used on 64 bits computers -# Author : Erik Dubois -# Website : http://www.erikdubois.be -################################################################################################################## -# -# DO NOT JUST RUN THIS. EXAMINE AND JUDGE. RUN AT YOUR OWN RISK. -# -################################################################################################################## - -echo "Checking and printing all the icons with a broken symbolic link" -find ./ -type l -exec file {} \; |grep 'broken symbolic' - -echo "End of script" - -sleep 5 \ No newline at end of file diff --git a/git-v1.sh b/git-v1.sh index 977d63184..62fc2e621 100755 --- a/git-v1.sh +++ b/git-v1.sh @@ -34,17 +34,6 @@ # git reset --hard orgin/master -# checking if kernel files are present otherswise github will become too big - -if [ -f linux* ]; then - echo "####################################" - echo "Stopping the script!!" - echo "Wait for the kernel update script to quit." - echo "####################################" - exit 0 -fi - - # checking if I have the latest files from github echo "Checking for newer files online first" git pull diff --git a/icon-cache-maker-for-surfn-v1.sh b/icon-cache-maker-for-surfn-v1.sh deleted file mode 100755 index c91bef920..000000000 --- a/icon-cache-maker-for-surfn-v1.sh +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/bash -# -################################################################################################################## -# Written to be used on 64 bits computers -# Author : Erik Dubois -# Website : http://www.erikdubois.be -################################################################################################################## -# -# DO NOT JUST RUN THIS. EXAMINE AND JUDGE. RUN AT YOUR OWN RISK. -# -################################################################################################################## - - -echo "making of icon cache for Surfn" - -gtk-update-icon-cache -f Surfn -gtk-update-icon-cache -f Surfn-Arc -gtk-update-icon-cache -f Surfn-Arch-Blue -gtk-update-icon-cache -f Surfn-Arched -gtk-update-icon-cache -f Surfn-Breeze-Dark -gtk-update-icon-cache -f Surfn-Evopop -gtk-update-icon-cache -f Surfn-Luv -gtk-update-icon-cache -f Surfn-Luv-Red -gtk-update-icon-cache -f Surfn-Majestic -gtk-update-icon-cache -f Surfn-Mint-X-Grey -gtk-update-icon-cache -f Surfn-Numix -gtk-update-icon-cache -f Surfn-Numix-Misty -gtk-update-icon-cache -f Surfn-Numix-Polo -gtk-update-icon-cache -f Surfn-Orange -gtk-update-icon-cache -f Surfn-Papirus-Blue -gtk-update-icon-cache -f Surfn-Papirus-Grey -gtk-update-icon-cache -f Surfn-Vertexed - - -echo "done" - diff --git a/icons-surfn-v2.sh b/icons-surfn-v2.sh deleted file mode 100755 index 896e6609d..000000000 --- a/icons-surfn-v2.sh +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/bash -# -################################################################################################################## -# Written to be used on 64 bits computers -# Author : Erik Dubois -# Website : http://www.erikdubois.be -################################################################################################################## -# -# DO NOT JUST RUN THIS. EXAMINE AND JUDGE. RUN AT YOUR OWN RISK. -# -################################################################################################################## - - - -rm -rf /tmp/Surfn -git clone https://github.com/erikdubois/Surfn /tmp/Surfn -find /tmp/Surfn -maxdepth 1 -type f -exec rm -rf '{}' \; - -# if there is no hidden folder then make one -[ -d $HOME"/.icons" ] || mkdir -p $HOME"/.icons" - -cp -rf /tmp/Surfn/* ~/.icons/ -rm -rf /tmp/Surfn - - - -echo "################################################################" -echo "################### icons surfn done ######################" -echo "################################################################"