├── themes-icons-pack.desktop ├── theme-flatabulous-latest.sh ├── theme-arch-frost-light-latest.sh ├── theme-arch-frost-dark-latest.sh ├── icons-sardi-extra-v2.sh ├── icons-sardi-v2.sh ├── theme-ambiance-latest.sh ├── icons-lacapitaine-latest.sh ├── setup-git-v1.sh ├── theme-adapta.sh ├── themes-numix-latest.sh ├── git-v1.sh ├── icons-faba-latest.sh ├── icons-moka-latest.sh ├── icons-numix-circle-latest.sh ├── icons-surfn-v1.sh ├── icons-vertex-latest.sh ├── icons-dalisha-latest.sh ├── theme-ambiance-and-radiance.sh ├── icons-flatwoken-latest.sh ├── uninstall-ambiance-and-radiance.sh ├── icons-super-flat-remix-latest.sh ├── theme-arc-colora-collection-3.0-v1.sh ├── theme-arc-colora-collection-3.2-v1.sh ├── theme-ceti-2-latest.sh ├── theme-mint-y-colora-collection-3.0-v1.sh ├── theme-mint-y-colora-collection-3.2-v1.sh ├── theme-arc-latest.sh ├── icons-compass-latest.sh ├── icons-papirus-latest.sh ├── icons-evopop-latest.sh ├── theme-minty-transparent-colora-v1.sh ├── icons-ultra-flat-latest.sh ├── uninstall-all-themes.sh ├── uninstall-all-icons.sh ├── theme-vertex-latest.sh ├── icons-oranchelo-latest.sh ├── icons-paper-latest.sh ├── icons-flattr-latest.sh ├── beta ├── installation_archlinux.sh └── installation_antergos_v2.sh ├── all-in-once-installation_deb_icons.sh ├── all-in-once-installation_deb_themes.sh └── README.md /themes-icons-pack.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Encoding=UTF-8 3 | Name=Link to erikdubois/themes-icons-pack: Script to download and install all interesting themes and icons for Linux Mint 4 | Type=Link 5 | URL=https://github.com/erikdubois/themes-icons-pack 6 | Icon=text-html 7 | Name[en_US]=themes-icons-pack 8 | -------------------------------------------------------------------------------- /theme-flatabulous-latest.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | #====================================================================================== 3 | # themes-icons-pack 4 | # 5 | # Author : Erik Dubois at http://www.erikdubois.be 6 | # License : Distributed under the terms of GNU GPL version 2 or later 7 | # 8 | # AS ALLWAYS, KNOW WHAT YOU ARE DOING. 9 | #====================================================================================== 10 | 11 | # F L A T A B U L O U S 12 | 13 | rm -rf /tmp/Flatabulous 14 | 15 | git clone https://github.com/anmoljagetia/Flatabulous /tmp/Flatabulous 16 | 17 | # if there is no hidden folder then make one 18 | [ -d $HOME"/.themes" ] || mkdir -p $HOME"/.themes" 19 | [ -d $HOME"/.themes/Flatabulous" ] || mkdir -p $HOME"/.themes/Flatabulous" 20 | cp -r /tmp/Flatabulous/* ~/.themes/Flatabulous 21 | 22 | rm -rf /tmp/Flatabulous 23 | 24 | echo "################################################################" 25 | echo "################### T H E E N D ######################" 26 | echo "################################################################" -------------------------------------------------------------------------------- /theme-arch-frost-light-latest.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | #====================================================================================== 3 | # themes-icons-pack 4 | # 5 | # Author : Erik Dubois at http://www.erikdubois.be 6 | # License : Distributed under the terms of GNU GPL version 2 or later 7 | # 8 | # AS ALLWAYS, KNOW WHAT YOU ARE DOING. 9 | #====================================================================================== 10 | rm -rf /tmp/arch-frost-gtk 11 | 12 | # A R C H F R O S T L I G H T 13 | git clone https://github.com/osendott/arch-frost-gtk /tmp/arch-frost-gtk 14 | 15 | # if there is no hidden folder then make one 16 | [ -d $HOME"/.themes" ] || mkdir -p $HOME"/.themes" 17 | [ -d $HOME"/.themes/arch-frost-gtk" ] || mkdir -p $HOME"/.themes/arch-frost-gtk" 18 | 19 | cp -r /tmp/arch-frost-gtk/arch-frost-light/* ~/.themes/arch-frost-gtk 20 | 21 | 22 | rm -rf /tmp/arch-frost-gtk 23 | 24 | echo "################################################################" 25 | echo "################### T H E E N D ######################" 26 | echo "################################################################" -------------------------------------------------------------------------------- /theme-arch-frost-dark-latest.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | #====================================================================================== 3 | # themes-icons-pack 4 | # 5 | # Author : Erik Dubois at http://www.erikdubois.be 6 | # License : Distributed under the terms of GNU GPL version 2 or later 7 | # 8 | # AS ALLWAYS, KNOW WHAT YOU ARE DOING. 9 | #====================================================================================== 10 | 11 | rm -rf /tmp/arch-frost-gtk-dark 12 | 13 | # A R C H F R O S T D A R K 14 | git clone https://github.com/osendott/arch-frost-gtk-dark /tmp/arch-frost-gtk-dark 15 | 16 | # if there is no hidden folder then make one 17 | [ -d $HOME"/.themes" ] || mkdir -p $HOME"/.themes" 18 | [ -d $HOME"/.themes/arch-frost-gtk-dark" ] || mkdir -p $HOME"/.themes/arch-frost-gtk-dark" 19 | 20 | cp -r /tmp/arch-frost-gtk-dark/arch-frost-dark/* ~/.themes/arch-frost-gtk-dark 21 | 22 | rm -rf /tmp/arch-frost-gtk-dark 23 | 24 | 25 | echo "################################################################" 26 | echo "################### T H E E N D ######################" 27 | echo "################################################################" -------------------------------------------------------------------------------- /icons-sardi-extra-v2.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | ################################################################################################################## 4 | # Written to be used on 64 bits computers 5 | # Author : Erik Dubois 6 | # Website : http://www.erikdubois.be 7 | ################################################################################################################## 8 | ################################################################################################################## 9 | # 10 | # DO NOT JUST RUN THIS. EXAMINE AND JUDGE. RUN AT YOUR OWN RISK. 11 | # 12 | ################################################################################################################## 13 | 14 | 15 | 16 | 17 | rm -rf /tmp/Sardi-Extra 18 | git clone https://github.com/erikdubois/Sardi-Extra /tmp/Sardi-Extra 19 | find /tmp/Sardi-Extra -maxdepth 1 -type f -exec rm -rf '{}' \; 20 | 21 | # if there is no hidden folder then make one 22 | [ -d $HOME"/.icons" ] || mkdir -p $HOME"/.icons" 23 | 24 | cp -r /tmp/Sardi-Extra/* ~/.icons/ 25 | rm -rf /tmp/Sardi-Extra 26 | 27 | 28 | 29 | 30 | echo "################################################################" 31 | echo "################### icons sardi extra done #################" 32 | echo "################################################################" 33 | -------------------------------------------------------------------------------- /icons-sardi-v2.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | ################################################################################################################## 4 | # Written to be used on 64 bits computers 5 | # Author : Erik Dubois 6 | # Website : http://www.erikdubois.be 7 | ################################################################################################################## 8 | ################################################################################################################## 9 | # 10 | # DO NOT JUST RUN THIS. EXAMINE AND JUDGE. RUN AT YOUR OWN RISK. 11 | # 12 | ################################################################################################################## 13 | 14 | 15 | 16 | rm -rf /tmp/sardi 17 | wget -O /tmp/sardi.tar.gz "https://sourceforge.net/projects/sardi/files/latest/download?source=files" 18 | mkdir /tmp/sardi 19 | tar -zxf /tmp/sardi.tar.gz -C /tmp/sardi 20 | rm /tmp/sardi.tar.gz 21 | 22 | # if there is no hidden folder then make one 23 | [ -d $HOME"/.icons" ] || mkdir -p $HOME"/.icons" 24 | 25 | cp -rf /tmp/sardi/* ~/.icons/ 26 | rm -rf /tmp/sardi 27 | 28 | 29 | 30 | echo "################################################################" 31 | echo "################### icons sardi done ######################" 32 | echo "################################################################" 33 | -------------------------------------------------------------------------------- /theme-ambiance-latest.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # 4 | # MMMMMMMMMMMMMMMMMMMMMMMMMmds+. 5 | # MMm----::-://////////////oymNMd+` 6 | # MMd /++ -sNMd: 7 | # MMNso/` dMM `.::-. .-::.` .hMN: 8 | # ddddMMh dMM :hNMNMNhNMNMNh: `NMm 9 | # NMm dMM .NMN/-+MMM+-/NMN` dMM 10 | # NMm dMM -MMm `MMM dMM. dMM 11 | # NMm dMM -MMm `MMM dMM. dMM 12 | # NMm dMM .mmd `mmm yMM. dMM 13 | # NMm dMM` ..` ... ydm. dMM 14 | # hMM- +MMd/-------...-:sdds dMM 15 | # -NMm- :hNMNNNmdddddddddy/` dMM 16 | # -dMNs-``-::::-------.`` dMM 17 | # `/dMNmy+/:-------------:/yMMM 18 | # ./ydNMMMMMMMMMMMMMMMMMMMMM 19 | # \.MMMMMMMMMMMMMMMMMMM 20 | # 21 | # 22 | # 23 | ################################################################################################################## 24 | # Written to be used on 64 bits computers 25 | # Author : Erik Dubois 26 | # Website : http://www.erikdubois.be 27 | ################################################################################################################## 28 | # 29 | # More from Erik Dubois 30 | # 31 | # Aurora Conky 32 | # at http://sourceforge.net/projects/auroraconkytheme/ 33 | # Explanation on the use of this theme can be found at 34 | # http://erikdubois.be/category/linux/aurora-conky/ 35 | # 36 | # Aureola Conky 37 | # Collections of nice conky's with lua syntax 38 | # https://github.com/erikdubois/Aureola 39 | # 40 | # Sardi icons 41 | # Many different styles of icons from colourfull, monochrome, white, circle 42 | # https://sourceforge.net/projects/sardi/ 43 | # 44 | # Super Ultra Flat Numix Remix 45 | # Colourfull and playfull icons 46 | # https://github.com/erikdubois/Super-Ultra-Flat-Numix-Remix 47 | # 48 | # Check out the github - many more scripts for automatic installation of Linux Systems. 49 | # 50 | # 51 | ################################################################################################################## 52 | # 53 | # DO NOT JUST RUN THIS. EXAMINE AND JUDGE. AT YOUR OWN RISK. 54 | # 55 | ################################################################################################################## 56 | 57 | 58 | 59 | 60 | sudo add-apt-repository ppa:ravefinity-project/ppa -y 61 | sudo apt-get update 62 | sudo apt-get install ambiance-colors radiance-colors -y 63 | 64 | 65 | 66 | 67 | echo "################################################################" 68 | echo "################### T H E E N D ######################" 69 | echo "################################################################" 70 | -------------------------------------------------------------------------------- /icons-lacapitaine-latest.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # 4 | # MMMMMMMMMMMMMMMMMMMMMMMMMmds+. 5 | # MMm----::-://////////////oymNMd+` 6 | # MMd /++ -sNMd: 7 | # MMNso/` dMM `.::-. .-::.` .hMN: 8 | # ddddMMh dMM :hNMNMNhNMNMNh: `NMm 9 | # NMm dMM .NMN/-+MMM+-/NMN` dMM 10 | # NMm dMM -MMm `MMM dMM. dMM 11 | # NMm dMM -MMm `MMM dMM. dMM 12 | # NMm dMM .mmd `mmm yMM. dMM 13 | # NMm dMM` ..` ... ydm. dMM 14 | # hMM- +MMd/-------...-:sdds dMM 15 | # -NMm- :hNMNNNmdddddddddy/` dMM 16 | # -dMNs-``-::::-------.`` dMM 17 | # `/dMNmy+/:-------------:/yMMM 18 | # ./ydNMMMMMMMMMMMMMMMMMMMMM 19 | # \.MMMMMMMMMMMMMMMMMMM 20 | # 21 | # 22 | # 23 | ################################################################################################################## 24 | # Written to be used on 64 bits computers 25 | # Author : Erik Dubois 26 | # Website : http://www.erikdubois.be 27 | ################################################################################################################## 28 | # 29 | # More from Erik Dubois 30 | # 31 | # Aurora Conky 32 | # at http://sourceforge.net/projects/auroraconkytheme/ 33 | # Explanation on the use of this theme can be found at 34 | # http://erikdubois.be/category/linux/aurora-conky/ 35 | # 36 | # Aureola Conky 37 | # Collections of nice conky's with lua syntax 38 | # https://github.com/erikdubois/Aureola 39 | # 40 | # Sardi icons 41 | # Many different styles of icons from colourfull, monochrome, white, circle 42 | # https://sourceforge.net/projects/sardi/ 43 | # 44 | # Super Ultra Flat Numix Remix 45 | # Colourfull and playfull icons 46 | # https://github.com/erikdubois/Super-Ultra-Flat-Numix-Remix 47 | # 48 | # Check out the github - many more scripts for automatic installation of Linux Systems. 49 | # 50 | # 51 | ################################################################################################################## 52 | # 53 | # DO NOT JUST RUN THIS. EXAMINE AND JUDGE. AT YOUR OWN RISK. 54 | # 55 | ################################################################################################################## 56 | 57 | [ -d $HOME"/.icons" ] || mkdir -p $HOME"/.icons" 58 | 59 | rm -rf /tmp/la-captaine 60 | 61 | git clone https://github.com/keeferrourke/la-capitaine-icon-theme ~/.icons/la-capitaine 62 | 63 | echo "################################################################" 64 | echo "################### T H E E N D ######################" 65 | echo "################################################################" 66 | -------------------------------------------------------------------------------- /setup-git-v1.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | ################################################################################################################## 4 | # Written to be used on 64 bits computers 5 | # Author : Erik Dubois 6 | # Website : http://www.erikdubois.be 7 | ################################################################################################################## 8 | ################################################################################################################## 9 | # 10 | # DO NOT JUST RUN THIS. EXAMINE AND JUDGE. RUN AT YOUR OWN RISK. 11 | # 12 | ################################################################################################################## 13 | 14 | # Problem solving commands 15 | 16 | # Read before using it. 17 | # https://www.atlassian.com/git/tutorials/undoing-changes/git-reset 18 | # git reset --hard orgin/master 19 | # ONLY if you are very sure and no coworkers are on your github. 20 | 21 | # Command that have helped in the past 22 | # Force git to overwrite local files on pull - no merge 23 | # git fetch all 24 | # git push --set-upstream origin master 25 | # git reset --hard orgin/master 26 | 27 | 28 | # installing git if not installed for specific distro's 29 | 30 | if ! location="$(type -p "git")" || [ -z "git" ]; then 31 | 32 | echo "#################################################" 33 | echo "installing git for this script to work" 34 | echo "#################################################" 35 | 36 | sudo apt install git -y 37 | # check if apt-git is installed 38 | if which apt-get > /dev/null; then 39 | 40 | sudo apt-get install -y git 41 | 42 | fi 43 | 44 | # check if pacman is installed 45 | if which pacman > /dev/null; then 46 | 47 | sudo pacman -S --noconfirm git 48 | 49 | fi 50 | 51 | # check if eopkg is installed 52 | if which eopkg > /dev/null; then 53 | 54 | sudo eopkg -y install git 55 | 56 | fi 57 | 58 | fi 59 | 60 | #setting up git 61 | #https://www.atlassian.com/git/tutorials/setting-up-a-repository/git-config 62 | 63 | git init 64 | git config --global user.name "Erik Dubois" 65 | git config --global user.email "erik.dubois@gmail.com" 66 | sudo git config --system core.editor nano 67 | git config --global credential.helper cache 68 | git config --global credential.helper 'cache --timeout=18000' 69 | git config --global push.default simple 70 | 71 | 72 | echo "################################################################" 73 | echo "################### T H E E N D ######################" 74 | echo "################################################################" 75 | -------------------------------------------------------------------------------- /theme-adapta.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # 4 | # MMMMMMMMMMMMMMMMMMMMMMMMMmds+. 5 | # MMm----::-://////////////oymNMd+` 6 | # MMd /++ -sNMd: 7 | # MMNso/` dMM `.::-. .-::.` .hMN: 8 | # ddddMMh dMM :hNMNMNhNMNMNh: `NMm 9 | # NMm dMM .NMN/-+MMM+-/NMN` dMM 10 | # NMm dMM -MMm `MMM dMM. dMM 11 | # NMm dMM -MMm `MMM dMM. dMM 12 | # NMm dMM .mmd `mmm yMM. dMM 13 | # NMm dMM` ..` ... ydm. dMM 14 | # hMM- +MMd/-------...-:sdds dMM 15 | # -NMm- :hNMNNNmdddddddddy/` dMM 16 | # -dMNs-``-::::-------.`` dMM 17 | # `/dMNmy+/:-------------:/yMMM 18 | # ./ydNMMMMMMMMMMMMMMMMMMMMM 19 | # \.MMMMMMMMMMMMMMMMMMM 20 | # 21 | # 22 | # 23 | ################################################################################################################## 24 | # Written to be used on 64 bits computers 25 | # Author : Erik Dubois 26 | # Website : http://www.erikdubois.be 27 | ################################################################################################################## 28 | # 29 | # More from Erik Dubois 30 | # 31 | # Aurora Conky 32 | # at http://sourceforge.net/projects/auroraconkytheme/ 33 | # Explanation on the use of this theme can be found at 34 | # http://erikdubois.be/category/linux/aurora-conky/ 35 | # 36 | # Aureola Conky 37 | # Collections of nice conky's with lua syntax 38 | # https://github.com/erikdubois/Aureola 39 | # 40 | # Sardi icons 41 | # Many different styles of icons from colourfull, monochrome, white, circle 42 | # https://sourceforge.net/projects/sardi/ 43 | # 44 | # Super Ultra Flat Numix Remix 45 | # Colourfull and playfull icons 46 | # https://github.com/erikdubois/Super-Ultra-Flat-Numix-Remix 47 | # 48 | # Check out the github - many more scripts for automatic installation of Linux Systems. 49 | # 50 | # 51 | ################################################################################################################## 52 | # 53 | # DO NOT JUST RUN THIS. EXAMINE AND JUDGE. AT YOUR OWN RISK. 54 | # 55 | ################################################################################################################## 56 | 57 | sudo apt-add-repository ppa:tista/adapta -y 58 | sudo apt update 59 | sudo apt install adapta-gtk-theme -y 60 | 61 | 62 | echo "################################################################" 63 | echo "################### T H E E N D ######################" 64 | echo "################################################################" 65 | -------------------------------------------------------------------------------- /themes-numix-latest.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # 4 | # MMMMMMMMMMMMMMMMMMMMMMMMMmds+. 5 | # MMm----::-://////////////oymNMd+` 6 | # MMd /++ -sNMd: 7 | # MMNso/` dMM `.::-. .-::.` .hMN: 8 | # ddddMMh dMM :hNMNMNhNMNMNh: `NMm 9 | # NMm dMM .NMN/-+MMM+-/NMN` dMM 10 | # NMm dMM -MMm `MMM dMM. dMM 11 | # NMm dMM -MMm `MMM dMM. dMM 12 | # NMm dMM .mmd `mmm yMM. dMM 13 | # NMm dMM` ..` ... ydm. dMM 14 | # hMM- +MMd/-------...-:sdds dMM 15 | # -NMm- :hNMNNNmdddddddddy/` dMM 16 | # -dMNs-``-::::-------.`` dMM 17 | # `/dMNmy+/:-------------:/yMMM 18 | # ./ydNMMMMMMMMMMMMMMMMMMMMM 19 | # \.MMMMMMMMMMMMMMMMMMM 20 | # 21 | # 22 | # 23 | ################################################################################################################## 24 | # Written to be used on 64 bits computers 25 | # Author : Erik Dubois 26 | # Website : http://www.erikdubois.be 27 | ################################################################################################################## 28 | # 29 | # More from Erik Dubois 30 | # 31 | # Aurora Conky 32 | # at http://sourceforge.net/projects/auroraconkytheme/ 33 | # Explanation on the use of this theme can be found at 34 | # http://erikdubois.be/category/linux/aurora-conky/ 35 | # 36 | # Aureola Conky 37 | # Collections of nice conky's with lua syntax 38 | # https://github.com/erikdubois/Aureola 39 | # 40 | # Sardi icons 41 | # Many different styles of icons from colourfull, monochrome, white, circle 42 | # https://sourceforge.net/projects/sardi/ 43 | # 44 | # Super Ultra Flat Numix Remix 45 | # Colourfull and playfull icons 46 | # https://github.com/erikdubois/Super-Ultra-Flat-Numix-Remix 47 | # 48 | # Check out the github - many more scripts for automatic installation of Linux Systems. 49 | # 50 | # 51 | ################################################################################################################## 52 | # 53 | # DO NOT JUST RUN THIS. EXAMINE AND JUDGE. AT YOUR OWN RISK. 54 | # 55 | ################################################################################################################## 56 | 57 | sudo add-apt-repository ppa:numix/ppa -y 58 | sudo apt-get update 59 | sudo apt-get install numix-gtk-theme -y 60 | 61 | 62 | 63 | 64 | echo "################################################################" 65 | echo "################### T H E E N D ######################" 66 | echo "################################################################" -------------------------------------------------------------------------------- /git-v1.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | ################################################################################################################## 4 | # Written to be used on 64 bits computers 5 | # Author : Erik Dubois 6 | # Website : http://www.erikdubois.be 7 | ################################################################################################################## 8 | ################################################################################################################## 9 | # 10 | # DO NOT JUST RUN THIS. EXAMINE AND JUDGE. RUN AT YOUR OWN RISK. 11 | # 12 | ################################################################################################################## 13 | 14 | # echo "# Ultimate-Linux-Mint-18" >> README.md 15 | # git init 16 | # git add README.md 17 | # git commit -m "first commit" 18 | # git remote add origin https://github.com/erikdubois/Ultimate-Linux-Mint-18-Cinnamon.git 19 | # git push -u origin master 20 | 21 | # git config --global user.name x 22 | # git config --global user.email x 23 | # sudo git config --system core.editor nano 24 | # git config --global credential.helper cache 25 | # git config --global credential.helper 'cache --timeout=3600' 26 | 27 | 28 | # Force git to overwrite local files on pull - no merge 29 | 30 | # git fetch all 31 | 32 | # git push --set-upstream origin master 33 | 34 | # git reset --hard orgin/master 35 | 36 | 37 | # checking if kernel files are present otherswise github will become too big 38 | 39 | if [ -f linux* ]; then 40 | echo "####################################" 41 | echo "Stopping the script!!" 42 | echo "Wait for the kernel update script to quit." 43 | echo "####################################" 44 | exit 0 45 | fi 46 | 47 | 48 | # checking if I have the latest files from github 49 | echo "Checking for newer files online first" 50 | git pull 51 | 52 | # Below command will backup everything inside the project folder 53 | git add --all . 54 | 55 | # Give a comment to the commit if you want 56 | echo "####################################" 57 | echo "Write your commit comment!" 58 | echo "####################################" 59 | 60 | read input 61 | 62 | # Committing to the local repository with a message containing the time details and commit text 63 | curtime=$(date) 64 | git commit -m "Comment : $input on $curtime" 65 | 66 | # Push the local files to github 67 | 68 | git push -u origin master 69 | 70 | 71 | echo "################################################################" 72 | echo "################### Git Push Done ######################" 73 | echo "################################################################" 74 | -------------------------------------------------------------------------------- /icons-faba-latest.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # 4 | # MMMMMMMMMMMMMMMMMMMMMMMMMmds+. 5 | # MMm----::-://////////////oymNMd+` 6 | # MMd /++ -sNMd: 7 | # MMNso/` dMM `.::-. .-::.` .hMN: 8 | # ddddMMh dMM :hNMNMNhNMNMNh: `NMm 9 | # NMm dMM .NMN/-+MMM+-/NMN` dMM 10 | # NMm dMM -MMm `MMM dMM. dMM 11 | # NMm dMM -MMm `MMM dMM. dMM 12 | # NMm dMM .mmd `mmm yMM. dMM 13 | # NMm dMM` ..` ... ydm. dMM 14 | # hMM- +MMd/-------...-:sdds dMM 15 | # -NMm- :hNMNNNmdddddddddy/` dMM 16 | # -dMNs-``-::::-------.`` dMM 17 | # `/dMNmy+/:-------------:/yMMM 18 | # ./ydNMMMMMMMMMMMMMMMMMMMMM 19 | # \.MMMMMMMMMMMMMMMMMMM 20 | # 21 | # 22 | # 23 | ################################################################################################################## 24 | # Written to be used on 64 bits computers 25 | # Author : Erik Dubois 26 | # Website : http://www.erikdubois.be 27 | ################################################################################################################## 28 | # 29 | # More from Erik Dubois 30 | # 31 | # Aurora Conky 32 | # at http://sourceforge.net/projects/auroraconkytheme/ 33 | # Explanation on the use of this theme can be found at 34 | # http://erikdubois.be/category/linux/aurora-conky/ 35 | # 36 | # Aureola Conky 37 | # Collections of nice conky's with lua syntax 38 | # https://github.com/erikdubois/Aureola 39 | # 40 | # Sardi icons 41 | # Many different styles of icons from colourfull, monochrome, white, circle 42 | # https://sourceforge.net/projects/sardi/ 43 | # 44 | # Super Ultra Flat Numix Remix 45 | # Colourfull and playfull icons 46 | # https://github.com/erikdubois/Super-Ultra-Flat-Numix-Remix 47 | # 48 | # Check out the github - many more scripts for automatic installation of Linux Systems. 49 | # 50 | # 51 | ################################################################################################################## 52 | # 53 | # DO NOT JUST RUN THIS. EXAMINE AND JUDGE. AT YOUR OWN RISK. 54 | # 55 | ################################################################################################################## 56 | 57 | sudo add-apt-repository ppa:moka/daily -y 58 | sudo apt-get update 59 | sudo apt-get install moka-icon-theme faba-mono-icons faba-icon-theme -y 60 | 61 | 62 | echo "################################################################" 63 | echo "################### T H E E N D ######################" 64 | echo "################################################################" -------------------------------------------------------------------------------- /icons-moka-latest.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # 4 | # MMMMMMMMMMMMMMMMMMMMMMMMMmds+. 5 | # MMm----::-://////////////oymNMd+` 6 | # MMd /++ -sNMd: 7 | # MMNso/` dMM `.::-. .-::.` .hMN: 8 | # ddddMMh dMM :hNMNMNhNMNMNh: `NMm 9 | # NMm dMM .NMN/-+MMM+-/NMN` dMM 10 | # NMm dMM -MMm `MMM dMM. dMM 11 | # NMm dMM -MMm `MMM dMM. dMM 12 | # NMm dMM .mmd `mmm yMM. dMM 13 | # NMm dMM` ..` ... ydm. dMM 14 | # hMM- +MMd/-------...-:sdds dMM 15 | # -NMm- :hNMNNNmdddddddddy/` dMM 16 | # -dMNs-``-::::-------.`` dMM 17 | # `/dMNmy+/:-------------:/yMMM 18 | # ./ydNMMMMMMMMMMMMMMMMMMMMM 19 | # \.MMMMMMMMMMMMMMMMMMM 20 | # 21 | # 22 | # 23 | ################################################################################################################## 24 | # Written to be used on 64 bits computers 25 | # Author : Erik Dubois 26 | # Website : http://www.erikdubois.be 27 | ################################################################################################################## 28 | # 29 | # More from Erik Dubois 30 | # 31 | # Aurora Conky 32 | # at http://sourceforge.net/projects/auroraconkytheme/ 33 | # Explanation on the use of this theme can be found at 34 | # http://erikdubois.be/category/linux/aurora-conky/ 35 | # 36 | # Aureola Conky 37 | # Collections of nice conky's with lua syntax 38 | # https://github.com/erikdubois/Aureola 39 | # 40 | # Sardi icons 41 | # Many different styles of icons from colourfull, monochrome, white, circle 42 | # https://sourceforge.net/projects/sardi/ 43 | # 44 | # Super Ultra Flat Numix Remix 45 | # Colourfull and playfull icons 46 | # https://github.com/erikdubois/Super-Ultra-Flat-Numix-Remix 47 | # 48 | # Check out the github - many more scripts for automatic installation of Linux Systems. 49 | # 50 | # 51 | ################################################################################################################## 52 | # 53 | # DO NOT JUST RUN THIS. EXAMINE AND JUDGE. AT YOUR OWN RISK. 54 | # 55 | ################################################################################################################## 56 | 57 | 58 | sudo add-apt-repository ppa:moka/daily -y 59 | sudo apt-get update 60 | sudo apt-get install faba-icon-theme faba-mono-icons moka-icon-theme -y 61 | 62 | 63 | 64 | echo "################################################################" 65 | echo "################### T H E E N D ######################" 66 | echo "################################################################" -------------------------------------------------------------------------------- /icons-numix-circle-latest.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # 4 | # MMMMMMMMMMMMMMMMMMMMMMMMMmds+. 5 | # MMm----::-://////////////oymNMd+` 6 | # MMd /++ -sNMd: 7 | # MMNso/` dMM `.::-. .-::.` .hMN: 8 | # ddddMMh dMM :hNMNMNhNMNMNh: `NMm 9 | # NMm dMM .NMN/-+MMM+-/NMN` dMM 10 | # NMm dMM -MMm `MMM dMM. dMM 11 | # NMm dMM -MMm `MMM dMM. dMM 12 | # NMm dMM .mmd `mmm yMM. dMM 13 | # NMm dMM` ..` ... ydm. dMM 14 | # hMM- +MMd/-------...-:sdds dMM 15 | # -NMm- :hNMNNNmdddddddddy/` dMM 16 | # -dMNs-``-::::-------.`` dMM 17 | # `/dMNmy+/:-------------:/yMMM 18 | # ./ydNMMMMMMMMMMMMMMMMMMMMM 19 | # \.MMMMMMMMMMMMMMMMMMM 20 | # 21 | # 22 | # 23 | ################################################################################################################## 24 | # Written to be used on 64 bits computers 25 | # Author : Erik Dubois 26 | # Website : http://www.erikdubois.be 27 | ################################################################################################################## 28 | # 29 | # More from Erik Dubois 30 | # 31 | # Aurora Conky 32 | # at http://sourceforge.net/projects/auroraconkytheme/ 33 | # Explanation on the use of this theme can be found at 34 | # http://erikdubois.be/category/linux/aurora-conky/ 35 | # 36 | # Aureola Conky 37 | # Collections of nice conky's with lua syntax 38 | # https://github.com/erikdubois/Aureola 39 | # 40 | # Sardi icons 41 | # Many different styles of icons from colourfull, monochrome, white, circle 42 | # https://sourceforge.net/projects/sardi/ 43 | # 44 | # Super Ultra Flat Numix Remix 45 | # Colourfull and playfull icons 46 | # https://github.com/erikdubois/Super-Ultra-Flat-Numix-Remix 47 | # 48 | # Check out the github - many more scripts for automatic installation of Linux Systems. 49 | # 50 | # 51 | ################################################################################################################## 52 | # 53 | # DO NOT JUST RUN THIS. EXAMINE AND JUDGE. AT YOUR OWN RISK. 54 | # 55 | ################################################################################################################## 56 | 57 | # N U M I X 58 | sudo add-apt-repository ppa:numix/ppa -y 59 | sudo apt-get update 60 | sudo apt-get install numix-icon-theme-circle -y 61 | 62 | 63 | 64 | 65 | echo "################################################################" 66 | echo "################### T H E E N D ######################" 67 | echo "################################################################" -------------------------------------------------------------------------------- /icons-surfn-v1.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # 4 | # MMMMMMMMMMMMMMMMMMMMMMMMMmds+. 5 | # MMm----::-://////////////oymNMd+` 6 | # MMd /++ -sNMd: 7 | # MMNso/` dMM `.::-. .-::.` .hMN: 8 | # ddddMMh dMM :hNMNMNhNMNMNh: `NMm 9 | # NMm dMM .NMN/-+MMM+-/NMN` dMM 10 | # NMm dMM -MMm `MMM dMM. dMM 11 | # NMm dMM -MMm `MMM dMM. dMM 12 | # NMm dMM .mmd `mmm yMM. dMM 13 | # NMm dMM` ..` ... ydm. dMM 14 | # hMM- +MMd/-------...-:sdds dMM 15 | # -NMm- :hNMNNNmdddddddddy/` dMM 16 | # -dMNs-``-::::-------.`` dMM 17 | # `/dMNmy+/:-------------:/yMMM 18 | # ./ydNMMMMMMMMMMMMMMMMMMMMM 19 | # \.MMMMMMMMMMMMMMMMMMM 20 | # 21 | # 22 | # 23 | ################################################################################################################## 24 | # Written to be used on 64 bits computers 25 | # Author : Erik Dubois 26 | # Website : http://www.erikdubois.be 27 | ################################################################################################################## 28 | # 29 | # More from Erik Dubois 30 | # 31 | # Aurora Conky 32 | # at http://sourceforge.net/projects/auroraconkytheme/ 33 | # Explanation on the use of this theme can be found at 34 | # http://erikdubois.be/category/linux/aurora-conky/ 35 | # 36 | # Aureola Conky 37 | # Collections of nice conky's with lua syntax 38 | # https://github.com/erikdubois/Aureola 39 | # 40 | # Sardi icons 41 | # Many different styles of icons from colourfull, monochrome, white, circle 42 | # https://sourceforge.net/projects/sardi/ 43 | # 44 | # Super Ultra Flat Numix Remix 45 | # Colourfull and playfull icons 46 | # https://github.com/erikdubois/Surfn 47 | # 48 | # Check out the github - many more scripts for automatic installation of Linux Systems. 49 | # 50 | # 51 | ################################################################################################################## 52 | # 53 | # DO NOT JUST RUN THIS. EXAMINE AND JUDGE. AT YOUR OWN RISK. 54 | # 55 | ################################################################################################################## 56 | 57 | # if there is no hidden folder then make one 58 | [ -d $HOME"/.icons" ] || mkdir -p $HOME"/.icons" 59 | 60 | rm -rf /tmp/Surfn 61 | git clone https://github.com/erikdubois/Surfn /tmp/Surfn 62 | find /tmp/Surfn -maxdepth 1 -type f -exec rm -rf '{}' \; 63 | cp -r /tmp/Surfn/* ~/.icons/ 64 | rm -rf /tmp/Surfn 65 | 66 | 67 | 68 | echo "################################################################" 69 | echo "################### T H E E N D ######################" 70 | echo "################################################################" 71 | -------------------------------------------------------------------------------- /icons-vertex-latest.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # 4 | # MMMMMMMMMMMMMMMMMMMMMMMMMmds+. 5 | # MMm----::-://////////////oymNMd+` 6 | # MMd /++ -sNMd: 7 | # MMNso/` dMM `.::-. .-::.` .hMN: 8 | # ddddMMh dMM :hNMNMNhNMNMNh: `NMm 9 | # NMm dMM .NMN/-+MMM+-/NMN` dMM 10 | # NMm dMM -MMm `MMM dMM. dMM 11 | # NMm dMM -MMm `MMM dMM. dMM 12 | # NMm dMM .mmd `mmm yMM. dMM 13 | # NMm dMM` ..` ... ydm. dMM 14 | # hMM- +MMd/-------...-:sdds dMM 15 | # -NMm- :hNMNNNmdddddddddy/` dMM 16 | # -dMNs-``-::::-------.`` dMM 17 | # `/dMNmy+/:-------------:/yMMM 18 | # ./ydNMMMMMMMMMMMMMMMMMMMMM 19 | # \.MMMMMMMMMMMMMMMMMMM 20 | # 21 | # 22 | # 23 | ################################################################################################################## 24 | # Written to be used on 64 bits computers 25 | # Author : Erik Dubois 26 | # Website : http://www.erikdubois.be 27 | ################################################################################################################## 28 | # 29 | # More from Erik Dubois 30 | # 31 | # Aurora Conky 32 | # at http://sourceforge.net/projects/auroraconkytheme/ 33 | # Explanation on the use of this theme can be found at 34 | # http://erikdubois.be/category/linux/aurora-conky/ 35 | # 36 | # Aureola Conky 37 | # Collections of nice conky's with lua syntax 38 | # https://github.com/erikdubois/Aureola 39 | # 40 | # Sardi icons 41 | # Many different styles of icons from colourfull, monochrome, white, circle 42 | # https://sourceforge.net/projects/sardi/ 43 | # 44 | # Super Ultra Flat Numix Remix 45 | # Colourfull and playfull icons 46 | # https://github.com/erikdubois/Super-Ultra-Flat-Numix-Remix 47 | # 48 | # Check out the github - many more scripts for automatic installation of Linux Systems. 49 | # 50 | # 51 | ################################################################################################################## 52 | # 53 | # DO NOT JUST RUN THIS. EXAMINE AND JUDGE. AT YOUR OWN RISK. 54 | # 55 | ################################################################################################################## 56 | 57 | # if there is no hidden folder then make one 58 | [ -d $HOME"/.icons" ] || mkdir -p $HOME"/.icons" 59 | 60 | rm -rf /tmp/vertex-icons 61 | git clone https://github.com/horst3180/vertex-icons.git /tmp/vertex-icons 62 | mkdir ~/.icons/vertex-icons 63 | cp -rf /tmp/vertex-icons/* ~/.icons/vertex-icons 64 | 65 | 66 | 67 | rm -rf /tmp/vertex-icons 68 | 69 | echo "################################################################" 70 | echo "################### T H E E N D ######################" 71 | echo "################################################################" 72 | -------------------------------------------------------------------------------- /icons-dalisha-latest.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # 4 | # MMMMMMMMMMMMMMMMMMMMMMMMMmds+. 5 | # MMm----::-://////////////oymNMd+` 6 | # MMd /++ -sNMd: 7 | # MMNso/` dMM `.::-. .-::.` .hMN: 8 | # ddddMMh dMM :hNMNMNhNMNMNh: `NMm 9 | # NMm dMM .NMN/-+MMM+-/NMN` dMM 10 | # NMm dMM -MMm `MMM dMM. dMM 11 | # NMm dMM -MMm `MMM dMM. dMM 12 | # NMm dMM .mmd `mmm yMM. dMM 13 | # NMm dMM` ..` ... ydm. dMM 14 | # hMM- +MMd/-------...-:sdds dMM 15 | # -NMm- :hNMNNNmdddddddddy/` dMM 16 | # -dMNs-``-::::-------.`` dMM 17 | # `/dMNmy+/:-------------:/yMMM 18 | # ./ydNMMMMMMMMMMMMMMMMMMMMM 19 | # \.MMMMMMMMMMMMMMMMMMM 20 | # 21 | # 22 | # 23 | ################################################################################################################## 24 | # Written to be used on 64 bits computers 25 | # Author : Erik Dubois 26 | # Website : http://www.erikdubois.be 27 | ################################################################################################################## 28 | # 29 | # More from Erik Dubois 30 | # 31 | # Aurora Conky 32 | # at http://sourceforge.net/projects/auroraconkytheme/ 33 | # Explanation on the use of this theme can be found at 34 | # http://erikdubois.be/category/linux/aurora-conky/ 35 | # 36 | # Aureola Conky 37 | # Collections of nice conky's with lua syntax 38 | # https://github.com/erikdubois/Aureola 39 | # 40 | # Sardi icons 41 | # Many different styles of icons from colourfull, monochrome, white, circle 42 | # https://sourceforge.net/projects/sardi/ 43 | # 44 | # Super Ultra Flat Numix Remix 45 | # Colourfull and playfull icons 46 | # https://github.com/erikdubois/Super-Ultra-Flat-Numix-Remix 47 | # 48 | # Check out the github - many more scripts for automatic installation of Linux Systems. 49 | # 50 | # 51 | ################################################################################################################## 52 | # 53 | # DO NOT JUST RUN THIS. EXAMINE AND JUDGE. AT YOUR OWN RISK. 54 | # 55 | ################################################################################################################## 56 | 57 | # D A L I S H A 58 | 59 | wget -O /tmp/dalisha.deb https://launchpad.net/~noobslab/+archive/ubuntu/icons/+files/dalisha-icons_3.0~trusty~Noobslab.com_all.deb 60 | sudo dpkg -i /tmp/dalisha.deb 61 | rm /tmp/dalisha.deb 62 | 63 | 64 | echo "################################################################" 65 | echo "################### T H E E N D ######################" 66 | echo "################################################################" -------------------------------------------------------------------------------- /theme-ambiance-and-radiance.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # 4 | # MMMMMMMMMMMMMMMMMMMMMMMMMmds+. 5 | # MMm----::-://////////////oymNMd+` 6 | # MMd /++ -sNMd: 7 | # MMNso/` dMM `.::-. .-::.` .hMN: 8 | # ddddMMh dMM :hNMNMNhNMNMNh: `NMm 9 | # NMm dMM .NMN/-+MMM+-/NMN` dMM 10 | # NMm dMM -MMm `MMM dMM. dMM 11 | # NMm dMM -MMm `MMM dMM. dMM 12 | # NMm dMM .mmd `mmm yMM. dMM 13 | # NMm dMM` ..` ... ydm. dMM 14 | # hMM- +MMd/-------...-:sdds dMM 15 | # -NMm- :hNMNNNmdddddddddy/` dMM 16 | # -dMNs-``-::::-------.`` dMM 17 | # `/dMNmy+/:-------------:/yMMM 18 | # ./ydNMMMMMMMMMMMMMMMMMMMMM 19 | # \.MMMMMMMMMMMMMMMMMMM 20 | # 21 | # 22 | # 23 | ################################################################################################################## 24 | # Written to be used on 64 bits computers 25 | # Author : Erik Dubois 26 | # Website : http://www.erikdubois.be 27 | ################################################################################################################## 28 | # 29 | # More from Erik Dubois 30 | # 31 | # Aurora Conky 32 | # at http://sourceforge.net/projects/auroraconkytheme/ 33 | # Explanation on the use of this theme can be found at 34 | # http://erikdubois.be/category/linux/aurora-conky/ 35 | # 36 | # Aureola Conky 37 | # Collections of nice conky's with lua syntax 38 | # https://github.com/erikdubois/Aureola 39 | # 40 | # Sardi icons 41 | # Many different styles of icons from colourfull, monochrome, white, circle 42 | # https://sourceforge.net/projects/sardi/ 43 | # 44 | # Super Ultra Flat Numix Remix 45 | # Colourfull and playfull icons 46 | # https://github.com/erikdubois/Super-Ultra-Flat-Numix-Remix 47 | # 48 | # Check out the github - many more scripts for automatic installation of Linux Systems. 49 | # 50 | # 51 | ################################################################################################################## 52 | # 53 | # DO NOT JUST RUN THIS. EXAMINE AND JUDGE. AT YOUR OWN RISK. 54 | # 55 | ################################################################################################################## 56 | 57 | # repositories 58 | 59 | sudo add-apt-repository ppa:ravefinity-project/ppa -y 60 | 61 | # themes 62 | sudo apt-get install ambiance-colors radiance-colors -y 63 | 64 | # getting new cache 65 | #sudo apt-get update 66 | 67 | 68 | 69 | echo "################################################################" 70 | echo "################### ALL UNINSTALLED ######################" 71 | echo "################################################################" 72 | -------------------------------------------------------------------------------- /icons-flatwoken-latest.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # 4 | # MMMMMMMMMMMMMMMMMMMMMMMMMmds+. 5 | # MMm----::-://////////////oymNMd+` 6 | # MMd /++ -sNMd: 7 | # MMNso/` dMM `.::-. .-::.` .hMN: 8 | # ddddMMh dMM :hNMNMNhNMNMNh: `NMm 9 | # NMm dMM .NMN/-+MMM+-/NMN` dMM 10 | # NMm dMM -MMm `MMM dMM. dMM 11 | # NMm dMM -MMm `MMM dMM. dMM 12 | # NMm dMM .mmd `mmm yMM. dMM 13 | # NMm dMM` ..` ... ydm. dMM 14 | # hMM- +MMd/-------...-:sdds dMM 15 | # -NMm- :hNMNNNmdddddddddy/` dMM 16 | # -dMNs-``-::::-------.`` dMM 17 | # `/dMNmy+/:-------------:/yMMM 18 | # ./ydNMMMMMMMMMMMMMMMMMMMMM 19 | # \.MMMMMMMMMMMMMMMMMMM 20 | # 21 | # 22 | # 23 | ################################################################################################################## 24 | # Written to be used on 64 bits computers 25 | # Author : Erik Dubois 26 | # Website : http://www.erikdubois.be 27 | ################################################################################################################## 28 | # 29 | # More from Erik Dubois 30 | # 31 | # Aurora Conky 32 | # at http://sourceforge.net/projects/auroraconkytheme/ 33 | # Explanation on the use of this theme can be found at 34 | # http://erikdubois.be/category/linux/aurora-conky/ 35 | # 36 | # Aureola Conky 37 | # Collections of nice conky's with lua syntax 38 | # https://github.com/erikdubois/Aureola 39 | # 40 | # Sardi icons 41 | # Many different styles of icons from colourfull, monochrome, white, circle 42 | # https://sourceforge.net/projects/sardi/ 43 | # 44 | # Super Ultra Flat Numix Remix 45 | # Colourfull and playfull icons 46 | # https://github.com/erikdubois/Super-Ultra-Flat-Numix-Remix 47 | # 48 | # Check out the github - many more scripts for automatic installation of Linux Systems. 49 | # 50 | # 51 | ################################################################################################################## 52 | # 53 | # DO NOT JUST RUN THIS. EXAMINE AND JUDGE. AT YOUR OWN RISK. 54 | # 55 | ################################################################################################################## 56 | 57 | [ -d $HOME"/.icons" ] || mkdir -p $HOME"/.icons" 58 | 59 | rm -rf /tmp/FlatWoken 60 | 61 | git clone https://github.com/alecive/FlatWoken.git /tmp/FlatWoken 62 | mkdir ~/.icons/FlatWoken 63 | mkdir ~/.icons/FlatWokenMin 64 | cp -r /tmp/FlatWoken/FlatWoken/* ~/.icons/FlatWoken 65 | cp -r /tmp/FlatWoken/FlatWokenMin/* ~/.icons/FlatWokenMin 66 | 67 | rm -rf /tmp/FlatWoken 68 | 69 | 70 | echo "################################################################" 71 | echo "################### T H E E N D ######################" 72 | echo "################################################################" 73 | -------------------------------------------------------------------------------- /uninstall-ambiance-and-radiance.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # 4 | # MMMMMMMMMMMMMMMMMMMMMMMMMmds+. 5 | # MMm----::-://////////////oymNMd+` 6 | # MMd /++ -sNMd: 7 | # MMNso/` dMM `.::-. .-::.` .hMN: 8 | # ddddMMh dMM :hNMNMNhNMNMNh: `NMm 9 | # NMm dMM .NMN/-+MMM+-/NMN` dMM 10 | # NMm dMM -MMm `MMM dMM. dMM 11 | # NMm dMM -MMm `MMM dMM. dMM 12 | # NMm dMM .mmd `mmm yMM. dMM 13 | # NMm dMM` ..` ... ydm. dMM 14 | # hMM- +MMd/-------...-:sdds dMM 15 | # -NMm- :hNMNNNmdddddddddy/` dMM 16 | # -dMNs-``-::::-------.`` dMM 17 | # `/dMNmy+/:-------------:/yMMM 18 | # ./ydNMMMMMMMMMMMMMMMMMMMMM 19 | # \.MMMMMMMMMMMMMMMMMMM 20 | # 21 | # 22 | # 23 | ################################################################################################################## 24 | # Written to be used on 64 bits computers 25 | # Author : Erik Dubois 26 | # Website : http://www.erikdubois.be 27 | ################################################################################################################## 28 | # 29 | # More from Erik Dubois 30 | # 31 | # Aurora Conky 32 | # at http://sourceforge.net/projects/auroraconkytheme/ 33 | # Explanation on the use of this theme can be found at 34 | # http://erikdubois.be/category/linux/aurora-conky/ 35 | # 36 | # Aureola Conky 37 | # Collections of nice conky's with lua syntax 38 | # https://github.com/erikdubois/Aureola 39 | # 40 | # Sardi icons 41 | # Many different styles of icons from colourfull, monochrome, white, circle 42 | # https://sourceforge.net/projects/sardi/ 43 | # 44 | # Super Ultra Flat Numix Remix 45 | # Colourfull and playfull icons 46 | # https://github.com/erikdubois/Super-Ultra-Flat-Numix-Remix 47 | # 48 | # Check out the github - many more scripts for automatic installation of Linux Systems. 49 | # 50 | # 51 | ################################################################################################################## 52 | # 53 | # DO NOT JUST RUN THIS. EXAMINE AND JUDGE. AT YOUR OWN RISK. 54 | # 55 | ################################################################################################################## 56 | 57 | # themes 58 | sudo apt-get remove ambiance-colors radiance-colors -y 59 | 60 | # repositories 61 | 62 | sudo add-apt-repository --remove ppa:ravefinity-project/ppa -y 63 | 64 | # getting new cache 65 | #sudo apt-get update 66 | 67 | 68 | 69 | echo "################################################################" 70 | echo "################### ALL UNINSTALLED ######################" 71 | echo "################################################################" 72 | -------------------------------------------------------------------------------- /icons-super-flat-remix-latest.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # 4 | # MMMMMMMMMMMMMMMMMMMMMMMMMmds+. 5 | # MMm----::-://////////////oymNMd+` 6 | # MMd /++ -sNMd: 7 | # MMNso/` dMM `.::-. .-::.` .hMN: 8 | # ddddMMh dMM :hNMNMNhNMNMNh: `NMm 9 | # NMm dMM .NMN/-+MMM+-/NMN` dMM 10 | # NMm dMM -MMm `MMM dMM. dMM 11 | # NMm dMM -MMm `MMM dMM. dMM 12 | # NMm dMM .mmd `mmm yMM. dMM 13 | # NMm dMM` ..` ... ydm. dMM 14 | # hMM- +MMd/-------...-:sdds dMM 15 | # -NMm- :hNMNNNmdddddddddy/` dMM 16 | # -dMNs-``-::::-------.`` dMM 17 | # `/dMNmy+/:-------------:/yMMM 18 | # ./ydNMMMMMMMMMMMMMMMMMMMMM 19 | # \.MMMMMMMMMMMMMMMMMMM 20 | # 21 | # 22 | # 23 | ################################################################################################################## 24 | # Written to be used on 64 bits computers 25 | # Author : Erik Dubois 26 | # Website : http://www.erikdubois.be 27 | ################################################################################################################## 28 | # 29 | # More from Erik Dubois 30 | # 31 | # Aurora Conky 32 | # at http://sourceforge.net/projects/auroraconkytheme/ 33 | # Explanation on the use of this theme can be found at 34 | # http://erikdubois.be/category/linux/aurora-conky/ 35 | # 36 | # Aureola Conky 37 | # Collections of nice conky's with lua syntax 38 | # https://github.com/erikdubois/Aureola 39 | # 40 | # Sardi icons 41 | # Many different styles of icons from colourfull, monochrome, white, circle 42 | # https://sourceforge.net/projects/sardi/ 43 | # 44 | # Super Ultra Flat Numix Remix 45 | # Colourfull and playfull icons 46 | # https://github.com/erikdubois/Super-Ultra-Flat-Numix-Remix 47 | # 48 | # Check out the github - many more scripts for automatic installation of Linux Systems. 49 | # 50 | # 51 | ################################################################################################################## 52 | # 53 | # DO NOT JUST RUN THIS. EXAMINE AND JUDGE. AT YOUR OWN RISK. 54 | # 55 | ################################################################################################################## 56 | 57 | # if there is no hidden folder then make one 58 | [ -d $HOME"/.icons" ] || mkdir -p $HOME"/.icons" 59 | 60 | rm -rf /tmp/Super-Flat-Remix 61 | 62 | git clone https://github.com/daniruiz/Super-Flat-Remix.git /tmp/Super-Flat-Remix 63 | mkdir ~/.icons/Super-Flat-Remix 64 | cp -r /tmp/Super-Flat-Remix/Super\ Flat\ Remix/* ~/.icons/Super-Flat-Remix 65 | 66 | rm -rf /tmp/Super-Flat-Remix 67 | 68 | echo "################################################################" 69 | echo "################### T H E E N D ######################" 70 | echo "################################################################" 71 | -------------------------------------------------------------------------------- /theme-arc-colora-collection-3.0-v1.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # 4 | # MMMMMMMMMMMMMMMMMMMMMMMMMmds+. 5 | # MMm----::-://////////////oymNMd+` 6 | # MMd /++ -sNMd: 7 | # MMNso/` dMM `.::-. .-::.` .hMN: 8 | # ddddMMh dMM :hNMNMNhNMNMNh: `NMm 9 | # NMm dMM .NMN/-+MMM+-/NMN` dMM 10 | # NMm dMM -MMm `MMM dMM. dMM 11 | # NMm dMM -MMm `MMM dMM. dMM 12 | # NMm dMM .mmd `mmm yMM. dMM 13 | # NMm dMM` ..` ... ydm. dMM 14 | # hMM- +MMd/-------...-:sdds dMM 15 | # -NMm- :hNMNNNmdddddddddy/` dMM 16 | # -dMNs-``-::::-------.`` dMM 17 | # `/dMNmy+/:-------------:/yMMM 18 | # ./ydNMMMMMMMMMMMMMMMMMMMMM 19 | # \.MMMMMMMMMMMMMMMMMMM 20 | # 21 | # 22 | # 23 | ################################################################################################################## 24 | # Written to be used on 64 bits computers 25 | # Author : Erik Dubois 26 | # Website : http://www.erikdubois.be 27 | ################################################################################################################## 28 | # 29 | # More from Erik Dubois 30 | # 31 | # Aurora Conky 32 | # at http://sourceforge.net/projects/auroraconkytheme/ 33 | # Explanation on the use of this theme can be found at 34 | # http://erikdubois.be/category/linux/aurora-conky/ 35 | # 36 | # Aureola Conky 37 | # Collections of nice conky's with lua syntax 38 | # https://github.com/erikdubois/Aureola 39 | # 40 | # Sardi icons 41 | # Many different styles of icons from colourfull, monochrome, white, circle 42 | # https://sourceforge.net/projects/sardi/ 43 | # 44 | # Super Ultra Flat Numix Remix 45 | # Colourfull and playfull icons 46 | # https://github.com/erikdubois/Super-Ultra-Flat-Numix-Remix 47 | # 48 | # Check out the github - many more scripts for automatic installation of Linux Systems. 49 | # 50 | # 51 | ################################################################################################################## 52 | # 53 | # DO NOT JUST RUN THIS. EXAMINE AND JUDGE. AT YOUR OWN RISK. 54 | # 55 | ################################################################################################################## 56 | 57 | # if there is no hidden folder then make one 58 | [ -d $HOME"/.themes" ] || mkdir -p $HOME"/.themes" 59 | 60 | 61 | rm -rf /tmp/Arc-Theme-Colora-Collection 62 | git clone https://github.com/erikdubois/Arc-Theme-Colora-Collection /tmp/Arc-Theme-Colora-Collection 63 | find /tmp/Arc-Theme-Colora-Collection -maxdepth 1 -type f -exec rm -rf '{}' \; 64 | cp -r /tmp/Arc-Theme-Colora-Collection/Cinnamon\ 3.0/* ~/.themes/ 65 | rm -rf /tmp/Arc-Theme-Colora-Collection 66 | 67 | 68 | echo "################################################################" 69 | echo "################## arc colora themes installed ###############" 70 | echo "################################################################" 71 | -------------------------------------------------------------------------------- /theme-arc-colora-collection-3.2-v1.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # 4 | # MMMMMMMMMMMMMMMMMMMMMMMMMmds+. 5 | # MMm----::-://////////////oymNMd+` 6 | # MMd /++ -sNMd: 7 | # MMNso/` dMM `.::-. .-::.` .hMN: 8 | # ddddMMh dMM :hNMNMNhNMNMNh: `NMm 9 | # NMm dMM .NMN/-+MMM+-/NMN` dMM 10 | # NMm dMM -MMm `MMM dMM. dMM 11 | # NMm dMM -MMm `MMM dMM. dMM 12 | # NMm dMM .mmd `mmm yMM. dMM 13 | # NMm dMM` ..` ... ydm. dMM 14 | # hMM- +MMd/-------...-:sdds dMM 15 | # -NMm- :hNMNNNmdddddddddy/` dMM 16 | # -dMNs-``-::::-------.`` dMM 17 | # `/dMNmy+/:-------------:/yMMM 18 | # ./ydNMMMMMMMMMMMMMMMMMMMMM 19 | # \.MMMMMMMMMMMMMMMMMMM 20 | # 21 | # 22 | # 23 | ################################################################################################################## 24 | # Written to be used on 64 bits computers 25 | # Author : Erik Dubois 26 | # Website : http://www.erikdubois.be 27 | ################################################################################################################## 28 | # 29 | # More from Erik Dubois 30 | # 31 | # Aurora Conky 32 | # at http://sourceforge.net/projects/auroraconkytheme/ 33 | # Explanation on the use of this theme can be found at 34 | # http://erikdubois.be/category/linux/aurora-conky/ 35 | # 36 | # Aureola Conky 37 | # Collections of nice conky's with lua syntax 38 | # https://github.com/erikdubois/Aureola 39 | # 40 | # Sardi icons 41 | # Many different styles of icons from colourfull, monochrome, white, circle 42 | # https://sourceforge.net/projects/sardi/ 43 | # 44 | # Super Ultra Flat Numix Remix 45 | # Colourfull and playfull icons 46 | # https://github.com/erikdubois/Super-Ultra-Flat-Numix-Remix 47 | # 48 | # Check out the github - many more scripts for automatic installation of Linux Systems. 49 | # 50 | # 51 | ################################################################################################################## 52 | # 53 | # DO NOT JUST RUN THIS. EXAMINE AND JUDGE. AT YOUR OWN RISK. 54 | # 55 | ################################################################################################################## 56 | 57 | # if there is no hidden folder then make one 58 | [ -d $HOME"/.themes" ] || mkdir -p $HOME"/.themes" 59 | 60 | 61 | rm -rf /tmp/Arc-Theme-Colora-Collection 62 | git clone https://github.com/erikdubois/Arc-Theme-Colora-Collection /tmp/Arc-Theme-Colora-Collection 63 | find /tmp/Arc-Theme-Colora-Collection -maxdepth 1 -type f -exec rm -rf '{}' \; 64 | cp -r /tmp/Arc-Theme-Colora-Collection/Cinnamon\ 3.2/* ~/.themes/ 65 | rm -rf /tmp/Arc-Theme-Colora-Collection 66 | 67 | 68 | echo "################################################################" 69 | echo "################## arc colora themes installed ###############" 70 | echo "################################################################" 71 | -------------------------------------------------------------------------------- /theme-ceti-2-latest.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # 4 | # MMMMMMMMMMMMMMMMMMMMMMMMMmds+. 5 | # MMm----::-://////////////oymNMd+` 6 | # MMd /++ -sNMd: 7 | # MMNso/` dMM `.::-. .-::.` .hMN: 8 | # ddddMMh dMM :hNMNMNhNMNMNh: `NMm 9 | # NMm dMM .NMN/-+MMM+-/NMN` dMM 10 | # NMm dMM -MMm `MMM dMM. dMM 11 | # NMm dMM -MMm `MMM dMM. dMM 12 | # NMm dMM .mmd `mmm yMM. dMM 13 | # NMm dMM` ..` ... ydm. dMM 14 | # hMM- +MMd/-------...-:sdds dMM 15 | # -NMm- :hNMNNNmdddddddddy/` dMM 16 | # -dMNs-``-::::-------.`` dMM 17 | # `/dMNmy+/:-------------:/yMMM 18 | # ./ydNMMMMMMMMMMMMMMMMMMMMM 19 | # \.MMMMMMMMMMMMMMMMMMM 20 | # 21 | # 22 | # 23 | ################################################################################################################## 24 | # Written to be used on 64 bits computers 25 | # Author : Erik Dubois 26 | # Website : http://www.erikdubois.be 27 | ################################################################################################################## 28 | # 29 | # More from Erik Dubois 30 | # 31 | # Aurora Conky 32 | # at http://sourceforge.net/projects/auroraconkytheme/ 33 | # Explanation on the use of this theme can be found at 34 | # http://erikdubois.be/category/linux/aurora-conky/ 35 | # 36 | # Aureola Conky 37 | # Collections of nice conky's with lua syntax 38 | # https://github.com/erikdubois/Aureola 39 | # 40 | # Sardi icons 41 | # Many different styles of icons from colourfull, monochrome, white, circle 42 | # https://sourceforge.net/projects/sardi/ 43 | # 44 | # Super Ultra Flat Numix Remix 45 | # Colourfull and playfull icons 46 | # https://github.com/erikdubois/Super-Ultra-Flat-Numix-Remix 47 | # 48 | # Check out the github - many more scripts for automatic installation of Linux Systems. 49 | # 50 | # 51 | ################################################################################################################## 52 | # 53 | # DO NOT JUST RUN THIS. EXAMINE AND JUDGE. AT YOUR OWN RISK. 54 | # 55 | ################################################################################################################## 56 | 57 | 58 | rm -rf /tmp/Ceti-2-theme 59 | 60 | sudo apt-get install autoconf automake pkg-config libgtk-3-dev git -y 61 | 62 | git clone https://github.com/horst3180/ceti-2-theme --depth 1 /tmp/Ceti-2-theme && cd /tmp/Ceti-2-theme 63 | 64 | ./autogen.sh --prefix=/usr 65 | sudo make install 66 | 67 | rm -rf /tmp/Ceti-2-theme 68 | 69 | #sudo make uninstall 70 | 71 | 72 | echo "################################################################" 73 | echo "################### T H E E N D ######################" 74 | echo "################################################################" 75 | -------------------------------------------------------------------------------- /theme-mint-y-colora-collection-3.0-v1.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # 4 | # MMMMMMMMMMMMMMMMMMMMMMMMMmds+. 5 | # MMm----::-://////////////oymNMd+` 6 | # MMd /++ -sNMd: 7 | # MMNso/` dMM `.::-. .-::.` .hMN: 8 | # ddddMMh dMM :hNMNMNhNMNMNh: `NMm 9 | # NMm dMM .NMN/-+MMM+-/NMN` dMM 10 | # NMm dMM -MMm `MMM dMM. dMM 11 | # NMm dMM -MMm `MMM dMM. dMM 12 | # NMm dMM .mmd `mmm yMM. dMM 13 | # NMm dMM` ..` ... ydm. dMM 14 | # hMM- +MMd/-------...-:sdds dMM 15 | # -NMm- :hNMNNNmdddddddddy/` dMM 16 | # -dMNs-``-::::-------.`` dMM 17 | # `/dMNmy+/:-------------:/yMMM 18 | # ./ydNMMMMMMMMMMMMMMMMMMMMM 19 | # \.MMMMMMMMMMMMMMMMMMM 20 | # 21 | # 22 | # 23 | ################################################################################################################## 24 | # Written to be used on 64 bits computers 25 | # Author : Erik Dubois 26 | # Website : http://www.erikdubois.be 27 | ################################################################################################################## 28 | # 29 | # More from Erik Dubois 30 | # 31 | # Aurora Conky 32 | # at http://sourceforge.net/projects/auroraconkytheme/ 33 | # Explanation on the use of this theme can be found at 34 | # http://erikdubois.be/category/linux/aurora-conky/ 35 | # 36 | # Aureola Conky 37 | # Collections of nice conky's with lua syntax 38 | # https://github.com/erikdubois/Aureola 39 | # 40 | # Sardi icons 41 | # Many different styles of icons from colourfull, monochrome, white, circle 42 | # https://sourceforge.net/projects/sardi/ 43 | # 44 | # Super Ultra Flat Numix Remix 45 | # Colourfull and playfull icons 46 | # https://github.com/erikdubois/Super-Ultra-Flat-Numix-Remix 47 | # 48 | # Check out the github - many more scripts for automatic installation of Linux Systems. 49 | # 50 | # 51 | ################################################################################################################## 52 | # 53 | # DO NOT JUST RUN THIS. EXAMINE AND JUDGE. AT YOUR OWN RISK. 54 | # 55 | ################################################################################################################## 56 | 57 | # if there is no hidden folder then make one 58 | [ -d $HOME"/.themes" ] || mkdir -p $HOME"/.themes" 59 | 60 | rm -rf /tmp/Mint-Y-Colora-Theme-Collection 61 | git clone https://github.com/erikdubois/Mint-Y-Colora-Theme-Collection /tmp/Mint-Y-Colora-Theme-Collection 62 | find /tmp/Mint-Y-Colora-Theme-Collection -maxdepth 1 -type f -exec rm -rf '{}' \; 63 | cp -r /tmp/Mint-Y-Colora-Theme-Collection/Cinnamon\ 3.0/* ~/.themes/ 64 | rm -rf /tmp/Mint-Y-Colora-Theme-Collection 65 | 66 | 67 | 68 | echo "################################################################" 69 | echo "############### Mint-y-themes installed ############" 70 | echo "################################################################" 71 | -------------------------------------------------------------------------------- /theme-mint-y-colora-collection-3.2-v1.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # 4 | # MMMMMMMMMMMMMMMMMMMMMMMMMmds+. 5 | # MMm----::-://////////////oymNMd+` 6 | # MMd /++ -sNMd: 7 | # MMNso/` dMM `.::-. .-::.` .hMN: 8 | # ddddMMh dMM :hNMNMNhNMNMNh: `NMm 9 | # NMm dMM .NMN/-+MMM+-/NMN` dMM 10 | # NMm dMM -MMm `MMM dMM. dMM 11 | # NMm dMM -MMm `MMM dMM. dMM 12 | # NMm dMM .mmd `mmm yMM. dMM 13 | # NMm dMM` ..` ... ydm. dMM 14 | # hMM- +MMd/-------...-:sdds dMM 15 | # -NMm- :hNMNNNmdddddddddy/` dMM 16 | # -dMNs-``-::::-------.`` dMM 17 | # `/dMNmy+/:-------------:/yMMM 18 | # ./ydNMMMMMMMMMMMMMMMMMMMMM 19 | # \.MMMMMMMMMMMMMMMMMMM 20 | # 21 | # 22 | # 23 | ################################################################################################################## 24 | # Written to be used on 64 bits computers 25 | # Author : Erik Dubois 26 | # Website : http://www.erikdubois.be 27 | ################################################################################################################## 28 | # 29 | # More from Erik Dubois 30 | # 31 | # Aurora Conky 32 | # at http://sourceforge.net/projects/auroraconkytheme/ 33 | # Explanation on the use of this theme can be found at 34 | # http://erikdubois.be/category/linux/aurora-conky/ 35 | # 36 | # Aureola Conky 37 | # Collections of nice conky's with lua syntax 38 | # https://github.com/erikdubois/Aureola 39 | # 40 | # Sardi icons 41 | # Many different styles of icons from colourfull, monochrome, white, circle 42 | # https://sourceforge.net/projects/sardi/ 43 | # 44 | # Super Ultra Flat Numix Remix 45 | # Colourfull and playfull icons 46 | # https://github.com/erikdubois/Super-Ultra-Flat-Numix-Remix 47 | # 48 | # Check out the github - many more scripts for automatic installation of Linux Systems. 49 | # 50 | # 51 | ################################################################################################################## 52 | # 53 | # DO NOT JUST RUN THIS. EXAMINE AND JUDGE. AT YOUR OWN RISK. 54 | # 55 | ################################################################################################################## 56 | 57 | # if there is no hidden folder then make one 58 | [ -d $HOME"/.themes" ] || mkdir -p $HOME"/.themes" 59 | 60 | rm -rf /tmp/Mint-Y-Colora-Theme-Collection 61 | git clone https://github.com/erikdubois/Mint-Y-Colora-Theme-Collection /tmp/Mint-Y-Colora-Theme-Collection 62 | find /tmp/Mint-Y-Colora-Theme-Collection -maxdepth 1 -type f -exec rm -rf '{}' \; 63 | cp -r /tmp/Mint-Y-Colora-Theme-Collection/Cinnamon\ 3.2/* ~/.themes/ 64 | rm -rf /tmp/Mint-Y-Colora-Theme-Collection 65 | 66 | 67 | 68 | echo "################################################################" 69 | echo "############### Mint-y-themes installed ############" 70 | echo "################################################################" 71 | -------------------------------------------------------------------------------- /theme-arc-latest.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # 4 | # MMMMMMMMMMMMMMMMMMMMMMMMMmds+. 5 | # MMm----::-://////////////oymNMd+` 6 | # MMd /++ -sNMd: 7 | # MMNso/` dMM `.::-. .-::.` .hMN: 8 | # ddddMMh dMM :hNMNMNhNMNMNh: `NMm 9 | # NMm dMM .NMN/-+MMM+-/NMN` dMM 10 | # NMm dMM -MMm `MMM dMM. dMM 11 | # NMm dMM -MMm `MMM dMM. dMM 12 | # NMm dMM .mmd `mmm yMM. dMM 13 | # NMm dMM` ..` ... ydm. dMM 14 | # hMM- +MMd/-------...-:sdds dMM 15 | # -NMm- :hNMNNNmdddddddddy/` dMM 16 | # -dMNs-``-::::-------.`` dMM 17 | # `/dMNmy+/:-------------:/yMMM 18 | # ./ydNMMMMMMMMMMMMMMMMMMMMM 19 | # \.MMMMMMMMMMMMMMMMMMM 20 | # 21 | # 22 | # 23 | ################################################################################################################## 24 | # Written to be used on 64 bits computers 25 | # Author : Erik Dubois 26 | # Website : http://www.erikdubois.be 27 | ################################################################################################################## 28 | # 29 | # More from Erik Dubois 30 | # 31 | # Aurora Conky 32 | # at http://sourceforge.net/projects/auroraconkytheme/ 33 | # Explanation on the use of this theme can be found at 34 | # http://erikdubois.be/category/linux/aurora-conky/ 35 | # 36 | # Aureola Conky 37 | # Collections of nice conky's with lua syntax 38 | # https://github.com/erikdubois/Aureola 39 | # 40 | # Sardi icons 41 | # Many different styles of icons from colourfull, monochrome, white, circle 42 | # https://sourceforge.net/projects/sardi/ 43 | # 44 | # Super Ultra Flat Numix Remix 45 | # Colourfull and playfull icons 46 | # https://github.com/erikdubois/Super-Ultra-Flat-Numix-Remix 47 | # 48 | # Check out the github - many more scripts for automatic installation of Linux Systems. 49 | # 50 | # 51 | ################################################################################################################## 52 | # 53 | # DO NOT JUST RUN THIS. EXAMINE AND JUDGE. AT YOUR OWN RISK. 54 | # 55 | ################################################################################################################## 56 | 57 | #https://github.com/horst3180/arc-theme 58 | 59 | sudo apt-get install build-essential autoconf automake pkg-config libgtk-3.0 libgtk-3-dev -y 60 | git clone https://github.com/horst3180/arc-theme --depth 1 /tmp/arc-theme && cd /tmp/arc-theme 61 | ./autogen.sh --prefix=/usr 62 | sudo make install 63 | rm -rf /tmp/arc-theme 64 | 65 | # sudo rm -rf /usr/share/themes/{Arc,Arc-Darker,Arc-Dark} 66 | 67 | 68 | echo "################################################################" 69 | echo "################### T H E E N D ######################" 70 | echo "################################################################" 71 | -------------------------------------------------------------------------------- /icons-compass-latest.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # 4 | # MMMMMMMMMMMMMMMMMMMMMMMMMmds+. 5 | # MMm----::-://////////////oymNMd+` 6 | # MMd /++ -sNMd: 7 | # MMNso/` dMM `.::-. .-::.` .hMN: 8 | # ddddMMh dMM :hNMNMNhNMNMNh: `NMm 9 | # NMm dMM .NMN/-+MMM+-/NMN` dMM 10 | # NMm dMM -MMm `MMM dMM. dMM 11 | # NMm dMM -MMm `MMM dMM. dMM 12 | # NMm dMM .mmd `mmm yMM. dMM 13 | # NMm dMM` ..` ... ydm. dMM 14 | # hMM- +MMd/-------...-:sdds dMM 15 | # -NMm- :hNMNNNmdddddddddy/` dMM 16 | # -dMNs-``-::::-------.`` dMM 17 | # `/dMNmy+/:-------------:/yMMM 18 | # ./ydNMMMMMMMMMMMMMMMMMMMMM 19 | # \.MMMMMMMMMMMMMMMMMMM 20 | # 21 | # 22 | # 23 | ################################################################################################################## 24 | # Written to be used on 64 bits computers 25 | # Author : Erik Dubois 26 | # Website : http://www.erikdubois.be 27 | ################################################################################################################## 28 | # 29 | # More from Erik Dubois 30 | # 31 | # Aurora Conky 32 | # at http://sourceforge.net/projects/auroraconkytheme/ 33 | # Explanation on the use of this theme can be found at 34 | # http://erikdubois.be/category/linux/aurora-conky/ 35 | # 36 | # Aureola Conky 37 | # Collections of nice conky's with lua syntax 38 | # https://github.com/erikdubois/Aureola 39 | # 40 | # Sardi icons 41 | # Many different styles of icons from colourfull, monochrome, white, circle 42 | # https://sourceforge.net/projects/sardi/ 43 | # 44 | # Super Ultra Flat Numix Remix 45 | # Colourfull and playfull icons 46 | # https://github.com/erikdubois/Super-Ultra-Flat-Numix-Remix 47 | # 48 | # Check out the github - many more scripts for automatic installation of Linux Systems. 49 | # 50 | # 51 | ################################################################################################################## 52 | # 53 | # DO NOT JUST RUN THIS. EXAMINE AND JUDGE. AT YOUR OWN RISK. 54 | # 55 | ################################################################################################################## 56 | 57 | 58 | 59 | wget -O /tmp/compass.tar.gz "https://launchpad.net/~nitrux-team/+archive/ubuntu/nitrux-artwork/+files/compass-icon-theme_1.3.8.tar.gz" 60 | mkdir /tmp/compass 61 | tar -zxvf /tmp/compass.tar.gz -C /tmp/compass 62 | rm /tmp/compass.tar.gz 63 | 64 | # if there is no hidden folder then make one 65 | [ -d $HOME"/.icons" ] || mkdir -p $HOME"/.icons" 66 | [ -d $HOME"/.icons/Compass" ] || mkdir -p $HOME"/.icons/Compass" 67 | cp -r /tmp/compass/compass-icon-theme-1.3.8/Compass ~/.icons 68 | rm -rf /tmp/compass 69 | 70 | 71 | 72 | 73 | echo "################################################################" 74 | echo "################### T H E E N D ######################" 75 | echo "################################################################" -------------------------------------------------------------------------------- /icons-papirus-latest.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # 4 | # MMMMMMMMMMMMMMMMMMMMMMMMMmds+. 5 | # MMm----::-://////////////oymNMd+` 6 | # MMd /++ -sNMd: 7 | # MMNso/` dMM `.::-. .-::.` .hMN: 8 | # ddddMMh dMM :hNMNMNhNMNMNh: `NMm 9 | # NMm dMM .NMN/-+MMM+-/NMN` dMM 10 | # NMm dMM -MMm `MMM dMM. dMM 11 | # NMm dMM -MMm `MMM dMM. dMM 12 | # NMm dMM .mmd `mmm yMM. dMM 13 | # NMm dMM` ..` ... ydm. dMM 14 | # hMM- +MMd/-------...-:sdds dMM 15 | # -NMm- :hNMNNNmdddddddddy/` dMM 16 | # -dMNs-``-::::-------.`` dMM 17 | # `/dMNmy+/:-------------:/yMMM 18 | # ./ydNMMMMMMMMMMMMMMMMMMMMM 19 | # \.MMMMMMMMMMMMMMMMMMM 20 | # 21 | # 22 | # 23 | ################################################################################################################## 24 | # Written to be used on 64 bits computers 25 | # Author : Erik Dubois 26 | # Website : http://www.erikdubois.be 27 | ################################################################################################################## 28 | # 29 | # More from Erik Dubois 30 | # 31 | # Aurora Conky 32 | # at http://sourceforge.net/projects/auroraconkytheme/ 33 | # Explanation on the use of this theme can be found at 34 | # http://erikdubois.be/category/linux/aurora-conky/ 35 | # 36 | # Aureola Conky 37 | # Collections of nice conky's with lua syntax 38 | # https://github.com/erikdubois/Aureola 39 | # 40 | # Sardi icons 41 | # Many different styles of icons from colourfull, monochrome, white, circle 42 | # https://sourceforge.net/projects/sardi/ 43 | # 44 | # Super Ultra Flat Numix Remix 45 | # Colourfull and playfull icons 46 | # https://github.com/erikdubois/Super-Ultra-Flat-Numix-Remix 47 | # 48 | # Check out the github - many more scripts for automatic installation of Linux Systems. 49 | # 50 | # 51 | ################################################################################################################## 52 | # 53 | # DO NOT JUST RUN THIS. EXAMINE AND JUDGE. AT YOUR OWN RISK. 54 | # 55 | ################################################################################################################## 56 | 57 | [ -d $HOME"/.icons" ] || mkdir -p $HOME"/.icons" 58 | 59 | rm -rf /tmp/papirus-icon-theme-kde 60 | git clone https://github.com/PapirusDevelopmentTeam/papirus-icon-theme-kde /tmp/papirus-icon-theme-kde 61 | find /tmp/papirus-icon-theme-kde -maxdepth 1 -type f -exec rm -rf '{}' \; 62 | cp -r /tmp/papirus-icon-theme-kde/* ~/.icons/ 63 | rm -rf /tmp/papirus-icon-theme-kde 64 | 65 | 66 | rm -rf /tmp/papirus-icon-theme-gtk 67 | git clone https://github.com/PapirusDevelopmentTeam/papirus-icon-theme-gtk /tmp/papirus-icon-theme-gtk 68 | find /tmp/papirus-icon-theme-gtk -maxdepth 1 -type f -exec rm -rf '{}' \; 69 | cp -r /tmp/papirus-icon-theme-gtk/* ~/.icons/ 70 | rm -rf /tmp/papirus-icon-theme-gtk 71 | 72 | 73 | echo "################################################################" 74 | echo "################### T H E E N D ######################" 75 | echo "################################################################" 76 | -------------------------------------------------------------------------------- /icons-evopop-latest.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # 4 | # MMMMMMMMMMMMMMMMMMMMMMMMMmds+. 5 | # MMm----::-://////////////oymNMd+` 6 | # MMd /++ -sNMd: 7 | # MMNso/` dMM `.::-. .-::.` .hMN: 8 | # ddddMMh dMM :hNMNMNhNMNMNh: `NMm 9 | # NMm dMM .NMN/-+MMM+-/NMN` dMM 10 | # NMm dMM -MMm `MMM dMM. dMM 11 | # NMm dMM -MMm `MMM dMM. dMM 12 | # NMm dMM .mmd `mmm yMM. dMM 13 | # NMm dMM` ..` ... ydm. dMM 14 | # hMM- +MMd/-------...-:sdds dMM 15 | # -NMm- :hNMNNNmdddddddddy/` dMM 16 | # -dMNs-``-::::-------.`` dMM 17 | # `/dMNmy+/:-------------:/yMMM 18 | # ./ydNMMMMMMMMMMMMMMMMMMMMM 19 | # \.MMMMMMMMMMMMMMMMMMM 20 | # 21 | # 22 | # 23 | ################################################################################################################## 24 | # Written to be used on 64 bits computers 25 | # Author : Erik Dubois 26 | # Website : http://www.erikdubois.be 27 | ################################################################################################################## 28 | # 29 | # More from Erik Dubois 30 | # 31 | # Aurora Conky 32 | # at http://sourceforge.net/projects/auroraconkytheme/ 33 | # Explanation on the use of this theme can be found at 34 | # http://erikdubois.be/category/linux/aurora-conky/ 35 | # 36 | # Aureola Conky 37 | # Collections of nice conky's with lua syntax 38 | # https://github.com/erikdubois/Aureola 39 | # 40 | # Sardi icons 41 | # Many different styles of icons from colourfull, monochrome, white, circle 42 | # https://sourceforge.net/projects/sardi/ 43 | # 44 | # Super Ultra Flat Numix Remix 45 | # Colourfull and playfull icons 46 | # https://github.com/erikdubois/Super-Ultra-Flat-Numix-Remix 47 | # 48 | # Check out the github - many more scripts for automatic installation of Linux Systems. 49 | # 50 | # 51 | ################################################################################################################## 52 | # 53 | # DO NOT JUST RUN THIS. EXAMINE AND JUDGE. AT YOUR OWN RISK. 54 | # 55 | ################################################################################################################## 56 | # E V O P O P 57 | 58 | rm -rf /tmp/evopop-icon-theme 59 | git clone https://github.com/solus-project/evopop-icon-theme.git /tmp/evopop-icon-theme 60 | cd /tmp/evopop-icon-theme 61 | 62 | sudo apt-get install build-essential autoconf automake -y 63 | 64 | sh autogen.sh 65 | sudo make install 66 | 67 | rm -rf /tmp/evopop-icon-theme 68 | 69 | 70 | echo "################################################################" 71 | echo "Renaming the content of the index.theme" 72 | sudo find /usr/share/icons/EvoPop -name "index.theme" -type f -exec sed -i 's/'Inherits=gnome,hicolor'/'Inherits=Surfn,gnome,hicolor'/g' {} \; 73 | 74 | 75 | echo "################################################################" 76 | echo "################### T H E E N D ######################" 77 | echo "################################################################" -------------------------------------------------------------------------------- /theme-minty-transparent-colora-v1.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # 4 | # MMMMMMMMMMMMMMMMMMMMMMMMMmds+. 5 | # MMm----::-://////////////oymNMd+` 6 | # MMd /++ -sNMd: 7 | # MMNso/` dMM `.::-. .-::.` .hMN: 8 | # ddddMMh dMM :hNMNMNhNMNMNh: `NMm 9 | # NMm dMM .NMN/-+MMM+-/NMN` dMM 10 | # NMm dMM -MMm `MMM dMM. dMM 11 | # NMm dMM -MMm `MMM dMM. dMM 12 | # NMm dMM .mmd `mmm yMM. dMM 13 | # NMm dMM` ..` ... ydm. dMM 14 | # hMM- +MMd/-------...-:sdds dMM 15 | # -NMm- :hNMNNNmdddddddddy/` dMM 16 | # -dMNs-``-::::-------.`` dMM 17 | # `/dMNmy+/:-------------:/yMMM 18 | # ./ydNMMMMMMMMMMMMMMMMMMMMM 19 | # \.MMMMMMMMMMMMMMMMMMM 20 | # 21 | # 22 | # 23 | ################################################################################################################## 24 | # Written to be used on 64 bits computers 25 | # Author : Erik Dubois 26 | # Website : http://www.erikdubois.be 27 | ################################################################################################################## 28 | # 29 | # More from Erik Dubois 30 | # 31 | # Aurora Conky 32 | # at http://sourceforge.net/projects/auroraconkytheme/ 33 | # Explanation on the use of this theme can be found at 34 | # http://erikdubois.be/category/linux/aurora-conky/ 35 | # 36 | # Aureola Conky 37 | # Collections of nice conky's with lua syntax 38 | # https://github.com/erikdubois/Aureola 39 | # 40 | # Sardi icons 41 | # Many different styles of icons from colourfull, monochrome, white, circle 42 | # https://sourceforge.net/projects/sardi/ 43 | # 44 | # Super Ultra Flat Numix Remix 45 | # Colourfull and playfull icons 46 | # https://github.com/erikdubois/Super-Ultra-Flat-Numix-Remix 47 | # 48 | # Check out the github - many more scripts for automatic installation of Linux Systems. 49 | # 50 | # 51 | ################################################################################################################## 52 | # 53 | # DO NOT JUST RUN THIS. EXAMINE AND JUDGE. AT YOUR OWN RISK. 54 | # 55 | ################################################################################################################## 56 | 57 | # if there is no hidden folder then make one 58 | [ -d $HOME"/.themes" ] || mkdir -p $HOME"/.themes" 59 | 60 | rm -rf /tmp/Ultimate-Linux-Mint-18-Cinnamon 61 | git clone https://github.com/erikdubois/Ultimate-Linux-Mint-18-Cinnamon /tmp/Ultimate-Linux-Mint-18-Cinnamon 62 | #find /tmp/Ultimate-Linux-Mint-18-Cinnamon -maxdepth 1 -type f -exec rm -rf '{}' \; 63 | mkdir ~/.themes/Minty-Transparent-Colora 64 | cp -r /tmp/Ultimate-Linux-Mint-18-Cinnamon/Theming/Cinnamon\ Theming/Minty-Transparent-Colora/Minty-Transparent-Colora/* ~/.themes/Minty-Transparent-Colora 65 | cp -r /tmp/Ultimate-Linux-Mint-18-Cinnamon/Theming/Cinnamon\ Theming/Minty-Transparent-Colora/Variations/* ~/.themes/ 66 | rm -rf /tmp/Ultimate-Linux-Mint-18-Cinnamon 67 | 68 | 69 | 70 | echo "################################################################" 71 | echo "################### T H E E N D ######################" 72 | echo "################################################################" 73 | -------------------------------------------------------------------------------- /icons-ultra-flat-latest.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # 4 | # MMMMMMMMMMMMMMMMMMMMMMMMMmds+. 5 | # MMm----::-://////////////oymNMd+` 6 | # MMd /++ -sNMd: 7 | # MMNso/` dMM `.::-. .-::.` .hMN: 8 | # ddddMMh dMM :hNMNMNhNMNMNh: `NMm 9 | # NMm dMM .NMN/-+MMM+-/NMN` dMM 10 | # NMm dMM -MMm `MMM dMM. dMM 11 | # NMm dMM -MMm `MMM dMM. dMM 12 | # NMm dMM .mmd `mmm yMM. dMM 13 | # NMm dMM` ..` ... ydm. dMM 14 | # hMM- +MMd/-------...-:sdds dMM 15 | # -NMm- :hNMNNNmdddddddddy/` dMM 16 | # -dMNs-``-::::-------.`` dMM 17 | # `/dMNmy+/:-------------:/yMMM 18 | # ./ydNMMMMMMMMMMMMMMMMMMMMM 19 | # \.MMMMMMMMMMMMMMMMMMM 20 | # 21 | # 22 | # 23 | ################################################################################################################## 24 | # Written to be used on 64 bits computers 25 | # Author : Erik Dubois 26 | # Website : http://www.erikdubois.be 27 | ################################################################################################################## 28 | # 29 | # More from Erik Dubois 30 | # 31 | # Aurora Conky 32 | # at http://sourceforge.net/projects/auroraconkytheme/ 33 | # Explanation on the use of this theme can be found at 34 | # http://erikdubois.be/category/linux/aurora-conky/ 35 | # 36 | # Aureola Conky 37 | # Collections of nice conky's with lua syntax 38 | # https://github.com/erikdubois/Aureola 39 | # 40 | # Sardi icons 41 | # Many different styles of icons from colourfull, monochrome, white, circle 42 | # https://sourceforge.net/projects/sardi/ 43 | # 44 | # Super Ultra Flat Numix Remix 45 | # Colourfull and playfull icons 46 | # https://github.com/erikdubois/Super-Ultra-Flat-Numix-Remix 47 | # 48 | # Check out the github - many more scripts for automatic installation of Linux Systems. 49 | # 50 | # 51 | ################################################################################################################## 52 | # 53 | # DO NOT JUST RUN THIS. EXAMINE AND JUDGE. AT YOUR OWN RISK. 54 | # 55 | ################################################################################################################## 56 | 57 | #blue 58 | wget -O /tmp/Ultra-Flat.deb https://launchpad.net/~noobslab/+archive/ubuntu/icons/+files/ultra-flat-icons_1.3.2~trusty~Noobslab.com_all.deb 59 | sudo dpkg -i /tmp/Ultra-Flat.deb 60 | rm -rf /tmp/Ultra-Flat.deb 61 | 62 | #orange 63 | wget -O /tmp/Ultra-Flat-Orange.deb https://launchpad.net/~noobslab/+archive/ubuntu/icons/+files/ultra-flat-icons-orange_1.3.2~trusty~Noobslab.com_all.deb 64 | sudo dpkg -i /tmp/Ultra-Flat-Orange.deb 65 | rm -rf /tmp/Ultra-Flat-Orange.deb 66 | 67 | #green 68 | wget -O /tmp/Ultra-Flat-Green.deb https://launchpad.net/~noobslab/+archive/ubuntu/icons/+files/ultra-flat-icons-green_1.3.2~trusty~Noobslab.com_all.deb 69 | sudo dpkg -i /tmp/Ultra-Flat-Green.deb 70 | rm -rf /tmp/Ultra-Flat-Green.deb 71 | 72 | 73 | echo "################################################################" 74 | echo "################### T H E E N D ######################" 75 | echo "################################################################" -------------------------------------------------------------------------------- /uninstall-all-themes.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # 4 | # MMMMMMMMMMMMMMMMMMMMMMMMMmds+. 5 | # MMm----::-://////////////oymNMd+` 6 | # MMd /++ -sNMd: 7 | # MMNso/` dMM `.::-. .-::.` .hMN: 8 | # ddddMMh dMM :hNMNMNhNMNMNh: `NMm 9 | # NMm dMM .NMN/-+MMM+-/NMN` dMM 10 | # NMm dMM -MMm `MMM dMM. dMM 11 | # NMm dMM -MMm `MMM dMM. dMM 12 | # NMm dMM .mmd `mmm yMM. dMM 13 | # NMm dMM` ..` ... ydm. dMM 14 | # hMM- +MMd/-------...-:sdds dMM 15 | # -NMm- :hNMNNNmdddddddddy/` dMM 16 | # -dMNs-``-::::-------.`` dMM 17 | # `/dMNmy+/:-------------:/yMMM 18 | # ./ydNMMMMMMMMMMMMMMMMMMMMM 19 | # \.MMMMMMMMMMMMMMMMMMM 20 | # 21 | # 22 | # 23 | ################################################################################################################## 24 | # Written to be used on 64 bits computers 25 | # Author : Erik Dubois 26 | # Website : http://www.erikdubois.be 27 | ################################################################################################################## 28 | # 29 | # More from Erik Dubois 30 | # 31 | # Aurora Conky 32 | # at http://sourceforge.net/projects/auroraconkytheme/ 33 | # Explanation on the use of this theme can be found at 34 | # http://erikdubois.be/category/linux/aurora-conky/ 35 | # 36 | # Aureola Conky 37 | # Collections of nice conky's with lua syntax 38 | # https://github.com/erikdubois/Aureola 39 | # 40 | # Sardi icons 41 | # Many different styles of icons from colourfull, monochrome, white, circle 42 | # https://sourceforge.net/projects/sardi/ 43 | # 44 | # Super Ultra Flat Numix Remix 45 | # Colourfull and playfull icons 46 | # https://github.com/erikdubois/Super-Ultra-Flat-Numix-Remix 47 | # 48 | # Check out the github - many more scripts for automatic installation of Linux Systems. 49 | # 50 | # 51 | ################################################################################################################## 52 | # 53 | # DO NOT JUST RUN THIS. EXAMINE AND JUDGE. AT YOUR OWN RISK. 54 | # 55 | ################################################################################################################## 56 | 57 | 58 | echo "THIS WILL UNINSTALL ALL THEMES AND REPOSITORIES." 59 | 60 | 61 | # themes 62 | 63 | rm -rf ~/.themes/* 64 | 65 | sudo rm -rf /usr/share/themes/Ceti-2 66 | sudo rm -rf /usr/share/themes/{Arc,Arc-Darker,Arc-Dark} 67 | sudo apt-get remove -y ambiance-colors 68 | sudo apt-get remove -y radiance-colors 69 | sudo rm -rf /usr/share/themes/{Vertex,Vertex-Light,Vertex-Dark} 70 | sudo apt-get remove -y numix-gtk-theme 71 | 72 | # repositories 73 | 74 | sudo add-apt-repository --remove ppa:numix/ppa -y 75 | sudo add-apt-repository --remove ppa:ravefinity-project/ppa -y 76 | sudo rm /etc/apt/sources.list.d/vertex-theme.list 77 | 78 | 79 | #delete empty link 80 | sudo rm -rf /usr/share/themes/Numix 81 | 82 | # getting new cache 83 | #sudo apt-get update 84 | 85 | 86 | echo "################################################################" 87 | echo "################### ALL UNINSTALLED ######################" 88 | echo "################################################################" 89 | -------------------------------------------------------------------------------- /uninstall-all-icons.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # 4 | # MMMMMMMMMMMMMMMMMMMMMMMMMmds+. 5 | # MMm----::-://////////////oymNMd+` 6 | # MMd /++ -sNMd: 7 | # MMNso/` dMM `.::-. .-::.` .hMN: 8 | # ddddMMh dMM :hNMNMNhNMNMNh: `NMm 9 | # NMm dMM .NMN/-+MMM+-/NMN` dMM 10 | # NMm dMM -MMm `MMM dMM. dMM 11 | # NMm dMM -MMm `MMM dMM. dMM 12 | # NMm dMM .mmd `mmm yMM. dMM 13 | # NMm dMM` ..` ... ydm. dMM 14 | # hMM- +MMd/-------...-:sdds dMM 15 | # -NMm- :hNMNNNmdddddddddy/` dMM 16 | # -dMNs-``-::::-------.`` dMM 17 | # `/dMNmy+/:-------------:/yMMM 18 | # ./ydNMMMMMMMMMMMMMMMMMMMMM 19 | # \.MMMMMMMMMMMMMMMMMMM 20 | # 21 | # 22 | # 23 | ################################################################################################################## 24 | # Written to be used on 64 bits computers 25 | # Author : Erik Dubois 26 | # Website : http://www.erikdubois.be 27 | ################################################################################################################## 28 | # 29 | # More from Erik Dubois 30 | # 31 | # Aurora Conky 32 | # at http://sourceforge.net/projects/auroraconkytheme/ 33 | # Explanation on the use of this theme can be found at 34 | # http://erikdubois.be/category/linux/aurora-conky/ 35 | # 36 | # Aureola Conky 37 | # Collections of nice conky's with lua syntax 38 | # https://github.com/erikdubois/Aureola 39 | # 40 | # Sardi icons 41 | # Many different styles of icons from colourfull, monochrome, white, circle 42 | # https://sourceforge.net/projects/sardi/ 43 | # 44 | # Super Ultra Flat Numix Remix 45 | # Colourfull and playfull icons 46 | # https://github.com/erikdubois/Super-Ultra-Flat-Numix-Remix 47 | # 48 | # Check out the github - many more scripts for automatic installation of Linux Systems. 49 | # 50 | # 51 | ################################################################################################################## 52 | # 53 | # DO NOT JUST RUN THIS. EXAMINE AND JUDGE. AT YOUR OWN RISK. 54 | # 55 | ################################################################################################################## 56 | 57 | 58 | echo "THIS WILL UNINSTALL ALL ICONS AND REPOSITORIES." 59 | 60 | # icons 61 | 62 | 63 | rm -rf ~/.icons/* 64 | 65 | sudo apt-get remove ultra-flat-icons ultra-flat-icons-green ultra-flat-icons-orange -y 66 | sudo apt-get remove numix-icon-theme numix-icon-theme-circle moka-icon-theme faba-mono-icons faba-icon-theme -y 67 | 68 | sudo rm -rf /usr/share/icons/Moka 69 | sudo rm -rf /usr/share/icons/Dalisha 70 | sudo rm -rf /usr/share/icons/EvoPop 71 | sudo rm -rf /usr/share/icons/Faba 72 | sudo rm -rf /usr/share/icons/Paper 73 | sudo apt-get remove -y dalisha-icons 74 | 75 | 76 | # repositories 77 | 78 | sudo add-apt-repository --remove ppa:numix/ppa -y 79 | sudo add-apt-repository --remove ppa:moka/daily -y 80 | 81 | 82 | #delete empty link 83 | sudo rm -rf /usr/share/themes/Numix 84 | 85 | # getting new cache 86 | #sudo apt-get update 87 | 88 | 89 | echo "################################################################" 90 | echo "################### ALL UNINSTALLED ######################" 91 | echo "################################################################" 92 | -------------------------------------------------------------------------------- /theme-vertex-latest.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # 4 | # MMMMMMMMMMMMMMMMMMMMMMMMMmds+. 5 | # MMm----::-://////////////oymNMd+` 6 | # MMd /++ -sNMd: 7 | # MMNso/` dMM `.::-. .-::.` .hMN: 8 | # ddddMMh dMM :hNMNMNhNMNMNh: `NMm 9 | # NMm dMM .NMN/-+MMM+-/NMN` dMM 10 | # NMm dMM -MMm `MMM dMM. dMM 11 | # NMm dMM -MMm `MMM dMM. dMM 12 | # NMm dMM .mmd `mmm yMM. dMM 13 | # NMm dMM` ..` ... ydm. dMM 14 | # hMM- +MMd/-------...-:sdds dMM 15 | # -NMm- :hNMNNNmdddddddddy/` dMM 16 | # -dMNs-``-::::-------.`` dMM 17 | # `/dMNmy+/:-------------:/yMMM 18 | # ./ydNMMMMMMMMMMMMMMMMMMMMM 19 | # \.MMMMMMMMMMMMMMMMMMM 20 | # 21 | # 22 | # 23 | ################################################################################################################## 24 | # Written to be used on 64 bits computers 25 | # Author : Erik Dubois 26 | # Website : http://www.erikdubois.be 27 | ################################################################################################################## 28 | # 29 | # More from Erik Dubois 30 | # 31 | # Aurora Conky 32 | # at http://sourceforge.net/projects/auroraconkytheme/ 33 | # Explanation on the use of this theme can be found at 34 | # http://erikdubois.be/category/linux/aurora-conky/ 35 | # 36 | # Aureola Conky 37 | # Collections of nice conky's with lua syntax 38 | # https://github.com/erikdubois/Aureola 39 | # 40 | # Sardi icons 41 | # Many different styles of icons from colourfull, monochrome, white, circle 42 | # https://sourceforge.net/projects/sardi/ 43 | # 44 | # Super Ultra Flat Numix Remix 45 | # Colourfull and playfull icons 46 | # https://github.com/erikdubois/Super-Ultra-Flat-Numix-Remix 47 | # 48 | # Check out the github - many more scripts for automatic installation of Linux Systems. 49 | # 50 | # 51 | ################################################################################################################## 52 | # 53 | # DO NOT JUST RUN THIS. EXAMINE AND JUDGE. AT YOUR OWN RISK. 54 | # 55 | ################################################################################################################## 56 | 57 | # https://github.com/horst3180/vertex-theme 58 | 59 | rm -rf /tmp/vertex-theme 60 | 61 | sudo rm -rf /usr/share/themes/{Vertex,Vertex-Dark,Vertex-Light,Vertex-Gnome-Shell,Vertex-Gnome-Shell-3.16,Vertex-Cinnamon} 62 | rm -rf ~/.local/share/themes/{Vertex,Vertex-Dark,Vertex-Light,Vertex-Gnome-Shell,Vertex-Gnome-Shell-3.16,Vertex-Cinnamon} 63 | rm -rf ~/.themes/{Vertex,Vertex-Dark,Vertex-Light,Vertex-Gnome-Shell,Vertex-Gnome-Shell-3.16,Vertex-Cinnamon} 64 | 65 | sudo apt-get install -y autoconf automake pkg-config libgtk-3-dev git 66 | 67 | git clone https://github.com/horst3180/vertex-theme --depth 1 /tmp/vertex-theme 68 | cd /tmp/vertex-theme 69 | ./autogen.sh --prefix=/usr 70 | sudo make install 71 | 72 | rm -rf /tmp/vertex-theme 73 | 74 | 75 | 76 | #sudo sh -c "echo 'deb http://download.opensuse.org/repositories/home:/Horst3180/xUbuntu_16.04/ /' >> /etc/apt/sources.list.d/vertex-theme.list" 77 | #sudo apt-get update 78 | #sudo apt-get install vertex-theme -y 79 | 80 | echo "################################################################" 81 | echo "################### T H E E N D ######################" 82 | echo "################################################################" -------------------------------------------------------------------------------- /icons-oranchelo-latest.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # 4 | # MMMMMMMMMMMMMMMMMMMMMMMMMmds+. 5 | # MMm----::-://////////////oymNMd+` 6 | # MMd /++ -sNMd: 7 | # MMNso/` dMM `.::-. .-::.` .hMN: 8 | # ddddMMh dMM :hNMNMNhNMNMNh: `NMm 9 | # NMm dMM .NMN/-+MMM+-/NMN` dMM 10 | # NMm dMM -MMm `MMM dMM. dMM 11 | # NMm dMM -MMm `MMM dMM. dMM 12 | # NMm dMM .mmd `mmm yMM. dMM 13 | # NMm dMM` ..` ... ydm. dMM 14 | # hMM- +MMd/-------...-:sdds dMM 15 | # -NMm- :hNMNNNmdddddddddy/` dMM 16 | # -dMNs-``-::::-------.`` dMM 17 | # `/dMNmy+/:-------------:/yMMM 18 | # ./ydNMMMMMMMMMMMMMMMMMMMMM 19 | # \.MMMMMMMMMMMMMMMMMMM 20 | # 21 | # 22 | # 23 | ################################################################################################################## 24 | # Written to be used on 64 bits computers 25 | # Author : Erik Dubois 26 | # Website : http://www.erikdubois.be 27 | ################################################################################################################## 28 | # 29 | # More from Erik Dubois 30 | # 31 | # Aurora Conky 32 | # at http://sourceforge.net/projects/auroraconkytheme/ 33 | # Explanation on the use of this theme can be found at 34 | # http://erikdubois.be/category/linux/aurora-conky/ 35 | # 36 | # Aureola Conky 37 | # Collections of nice conky's with lua syntax 38 | # https://github.com/erikdubois/Aureola 39 | # 40 | # Sardi icons 41 | # Many different styles of icons from colourfull, monochrome, white, circle 42 | # https://sourceforge.net/projects/sardi/ 43 | # 44 | # Super Ultra Flat Numix Remix 45 | # Colourfull and playfull icons 46 | # https://github.com/erikdubois/oranchelo-icon-theme 47 | # 48 | # Check out the github - many more scripts for automatic installation of Linux Systems. 49 | # 50 | # 51 | ################################################################################################################## 52 | # 53 | # DO NOT JUST RUN THIS. EXAMINE AND JUDGE. AT YOUR OWN RISK. 54 | # 55 | ################################################################################################################## 56 | 57 | echo "There are still a 10+ icons missing for Linux Mint." 58 | echo "The solution for now is to install a fallback theme." 59 | echo "May I suggest to use Surfn as a fallback." 60 | echo "The inherits line will be changed in this way." 61 | echo "If Surfn is not installed then it will not be used." 62 | echo "Oranchelo will use the next icon theme in the inherits line." 63 | 64 | read -rsp $'Press any key to continue...\n' -n1 key 65 | 66 | 67 | # if there is no hidden folder then make one 68 | [ -d $HOME"/.icons" ] || mkdir -p $HOME"/.icons" 69 | 70 | rm -rf /tmp/oranchelo-icon-theme 71 | git clone https://github.com/OrancheloTeam/oranchelo-icon-theme /tmp/oranchelo-icon-theme 72 | find /tmp/oranchelo-icon-theme -maxdepth 1 -type f -exec rm -rf '{}' \; 73 | cp -r /tmp/oranchelo-icon-theme/* ~/.icons/ 74 | rm -rf /tmp/oranchelo-icon-theme 75 | 76 | 77 | echo "################################################################" 78 | echo "Renaming the content of the index.theme" 79 | find $HOME"/.icons/Oranchelo" -name "index.theme" -type f -exec sed -i 's/'Inherits=gnome'/'Inherits=Surfn,gnome,hicolor'/g' {} \; 80 | 81 | 82 | echo "################################################################" 83 | echo "################### T H E E N D ######################" 84 | echo "################################################################" 85 | -------------------------------------------------------------------------------- /icons-paper-latest.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # 4 | # MMMMMMMMMMMMMMMMMMMMMMMMMmds+. 5 | # MMm----::-://////////////oymNMd+` 6 | # MMd /++ -sNMd: 7 | # MMNso/` dMM `.::-. .-::.` .hMN: 8 | # ddddMMh dMM :hNMNMNhNMNMNh: `NMm 9 | # NMm dMM .NMN/-+MMM+-/NMN` dMM 10 | # NMm dMM -MMm `MMM dMM. dMM 11 | # NMm dMM -MMm `MMM dMM. dMM 12 | # NMm dMM .mmd `mmm yMM. dMM 13 | # NMm dMM` ..` ... ydm. dMM 14 | # hMM- +MMd/-------...-:sdds dMM 15 | # -NMm- :hNMNNNmdddddddddy/` dMM 16 | # -dMNs-``-::::-------.`` dMM 17 | # `/dMNmy+/:-------------:/yMMM 18 | # ./ydNMMMMMMMMMMMMMMMMMMMMM 19 | # \.MMMMMMMMMMMMMMMMMMM 20 | # 21 | # 22 | # 23 | ################################################################################################################## 24 | # Written to be used on 64 bits computers 25 | # Author : Erik Dubois 26 | # Website : http://www.erikdubois.be 27 | ################################################################################################################## 28 | # 29 | # More from Erik Dubois 30 | # 31 | # Aurora Conky 32 | # at http://sourceforge.net/projects/auroraconkytheme/ 33 | # Explanation on the use of this theme can be found at 34 | # http://erikdubois.be/category/linux/aurora-conky/ 35 | # 36 | # Aureola Conky 37 | # Collections of nice conky's with lua syntax 38 | # https://github.com/erikdubois/Aureola 39 | # 40 | # Sardi icons 41 | # Many different styles of icons from colourfull, monochrome, white, circle 42 | # https://sourceforge.net/projects/sardi/ 43 | # 44 | # Super Ultra Flat Numix Remix 45 | # Colourfull and playfull icons 46 | # https://github.com/erikdubois/Super-Ultra-Flat-Numix-Remix 47 | # 48 | # Check out the github - many more scripts for automatic installation of Linux Systems. 49 | # 50 | # 51 | ################################################################################################################## 52 | # 53 | # DO NOT JUST RUN THIS. EXAMINE AND JUDGE. AT YOUR OWN RISK. 54 | # 55 | ################################################################################################################## 56 | 57 | 58 | echo "There are still a 10+ icons missing for Linux Mint." 59 | echo "The solution for now is to install a fallback theme." 60 | echo "May I suggest to use Surfn as a fallback." 61 | echo "The inherits line will be changed in this way." 62 | echo "If Surfn is not installed then it will not be used." 63 | echo "Paper will use the next icon theme in the inherits line." 64 | 65 | read -rsp $'Press any key to continue...\n' -n1 key 66 | 67 | # if there is no hidden folder then make one 68 | [ -d $HOME"/.icons" ] || mkdir -p $HOME"/.icons" 69 | 70 | 71 | rm -rf /tmp/paper-icon-theme 72 | git clone https://github.com/snwh/paper-icon-theme /tmp/paper-icon-theme 73 | cd /tmp/paper-icon-theme 74 | sudo apt-get install autotools-dev -y 75 | ./autogen.sh 76 | make 77 | sudo make install 78 | 79 | rm -rf /tmp/paper-icon-theme 80 | 81 | echo "################################################################" 82 | echo "Renaming the content of the index.theme" 83 | sudo find /usr/share/icons/Paper -name "index.theme" -type f -exec sed -i 's/'Inherits=Adwaita,gnome,hicolor'/'Inherits=Surfn,Adwaita,gnome,hicolor'/g' {} \; 84 | 85 | 86 | echo "################################################################" 87 | echo "################### T H E E N D ######################" 88 | echo "################################################################" 89 | -------------------------------------------------------------------------------- /icons-flattr-latest.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # 4 | # MMMMMMMMMMMMMMMMMMMMMMMMMmds+. 5 | # MMm----::-://////////////oymNMd+` 6 | # MMd /++ -sNMd: 7 | # MMNso/` dMM `.::-. .-::.` .hMN: 8 | # ddddMMh dMM :hNMNMNhNMNMNh: `NMm 9 | # NMm dMM .NMN/-+MMM+-/NMN` dMM 10 | # NMm dMM -MMm `MMM dMM. dMM 11 | # NMm dMM -MMm `MMM dMM. dMM 12 | # NMm dMM .mmd `mmm yMM. dMM 13 | # NMm dMM` ..` ... ydm. dMM 14 | # hMM- +MMd/-------...-:sdds dMM 15 | # -NMm- :hNMNNNmdddddddddy/` dMM 16 | # -dMNs-``-::::-------.`` dMM 17 | # `/dMNmy+/:-------------:/yMMM 18 | # ./ydNMMMMMMMMMMMMMMMMMMMMM 19 | # \.MMMMMMMMMMMMMMMMMMM 20 | # 21 | # 22 | # 23 | ################################################################################################################## 24 | # Written to be used on 64 bits computers 25 | # Author : Erik Dubois 26 | # Website : http://www.erikdubois.be 27 | ################################################################################################################## 28 | # 29 | # More from Erik Dubois 30 | # 31 | # Aurora Conky 32 | # at http://sourceforge.net/projects/auroraconkytheme/ 33 | # Explanation on the use of this theme can be found at 34 | # http://erikdubois.be/category/linux/aurora-conky/ 35 | # 36 | # Aureola Conky 37 | # Collections of nice conky's with lua syntax 38 | # https://github.com/erikdubois/Aureola 39 | # 40 | # Sardi icons 41 | # Many different styles of icons from colourfull, monochrome, white, circle 42 | # https://sourceforge.net/projects/sardi/ 43 | # 44 | # Super Ultra Flat Numix Remix 45 | # Colourfull and playfull icons 46 | # https://github.com/erikdubois/Super-Ultra-Flat-Numix-Remix 47 | # 48 | # Check out the github - many more scripts for automatic installation of Linux Systems. 49 | # 50 | # 51 | ################################################################################################################## 52 | # 53 | # DO NOT JUST RUN THIS. EXAMINE AND JUDGE. AT YOUR OWN RISK. 54 | # 55 | ################################################################################################################## 56 | 57 | 58 | echo "There are still a 10+ icons missing for Linux Mint." 59 | echo "The solution for now is to install a fallback theme." 60 | echo "May I suggest to use Surfn as a fallback." 61 | echo "The inherits line will be changed in this way." 62 | echo "If Surfn is not installed then it will not be used." 63 | echo "Luv will use the next icon theme in the inherits line." 64 | 65 | read -rsp $'Press any key to continue...\n' -n1 key 66 | 67 | # if there is no hidden folder then make one 68 | [ -d $HOME"/.icons" ] || mkdir -p $HOME"/.icons" 69 | 70 | 71 | rm -rf /tmp/flattr-icons 72 | 73 | git clone https://github.com/NitruxSA/flattr-icons.git /tmp/flattr-icons 74 | mkdir ~/.icons/Lüv 75 | mkdir ~/.icons/Lüv\ Dark 76 | cp -r /tmp/flattr-icons/Lüv/* ~/.icons/Lüv 77 | cp -r /tmp/flattr-icons/Lüv\ Dark/* ~/.icons/Lüv\ Dark 78 | 79 | rm -rf /tmp/flattr-icons 80 | 81 | 82 | echo "################################################################" 83 | echo "Renaming the content of the index.theme" 84 | sudo find ~/.icons/Lüv -name "index.theme" -type f -exec sed -i 's/'Inherits=hicolor'/'Inherits=Surfn,Adwaita,gnome,hicolor'/g' {} \; 85 | sudo find ~/.icons/Lüv\ Dark -name "index.theme" -type f -exec sed -i 's/'Inherits=hicolor'/'Inherits=Surfn,Adwaita,gnome,hicolor'/g' {} \; 86 | 87 | 88 | 89 | echo "################################################################" 90 | echo "################### T H E E N D ######################" 91 | echo "################################################################" -------------------------------------------------------------------------------- /beta/installation_archlinux.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | #====================================================================================== 3 | # themes-icons-pack 4 | # 5 | # Author : Erik Dubois at http://www.erikdubois.be 6 | # License : Distributed under the terms of GNU GPL version 2 or later 7 | # 8 | # AS ALLWAYS, KNOW WHAT YOU ARE DOING. 9 | #====================================================================================== 10 | 11 | 12 | # install packer first 13 | # yaourt packer 14 | 15 | ######################################## 16 | ######## I C O N S ######### 17 | ######################################## 18 | 19 | # 1 Sardi 20 | 21 | packer sardi-icons --noedit 22 | 23 | 24 | # 2 Super Ultra Flat Numix Remix 25 | 26 | packer super-ultra-flat-numix-remix-icons-git --noedit 27 | 28 | # 3 Numix circles 29 | 30 | packer numix-circle-icon-theme-git --noedit 31 | 32 | # 4 Evopop 33 | 34 | #git clone https://github.com/solus-project/evopop-icon-theme.git /tmp/evopop-icon-theme 35 | #mkdir ~/.icons/evopop-icon-theme 36 | #cp -r /tmp/evopop-icon-theme/EvoPop/* ~/.icons/evopop-icon-theme 37 | 38 | packer evopop-icon-theme -noedit 39 | 40 | # 5 Flattr or lüv 41 | 42 | packer flattr-icon-theme --noedit 43 | 44 | #git clone https://github.com/NitruxSA/flattr-icons.git /tmp/flattr-icons 45 | #mkdir ~/.icons/Flattr 46 | #mkdir ~/.icons/Flattr\ Dark 47 | #cp -r /tmp/flattr-icons/Flattr/* ~/.icons/Flattr 48 | #cp -r /tmp/flattr-icons/Flattr\ Dark/* ~/.icons/Flattr\ Dark 49 | 50 | # 6 superflat remix icons 51 | 52 | packer super-flat-remix-icon-theme --noedit 53 | 54 | #git clone https://github.com/daniruiz/Super-Flat-Remix.git /tmp/Super-Flat-Remix 55 | #mkdir ~/.icons/Super-Flat-Remix 56 | #cp -r /tmp/Super-Flat-Remix/Super\ Flat\ Remix/* ~/.icons/Super-Flat-Remix 57 | 58 | # 7 Ultra flat icons 59 | 60 | packer ultra-flat-gtk --noedit 61 | 62 | # 8 Flatwoken 63 | 64 | packer flatwoken-icons-git --noedit 65 | 66 | #git clone https://github.com/alecive/FlatWoken.git /tmp/FlatWoken 67 | #mkdir ~/.icons/FlatWoken 68 | #mkdir ~/.icons/FlatWokenMin 69 | #cp -r /tmp/FlatWoken/FlatWoken/* ~/.icons/FlatWoken 70 | #cp -r /tmp/FlatWoken/FlatWokenMin/* ~/.icons/FlatWokenMin 71 | 72 | 73 | # 9 Moka and Faba 74 | 75 | packer moka-icon-theme-git --noedit 76 | 77 | packer faba-icon-theme-git --noedit 78 | 79 | 80 | # 10 Dalisha 81 | 82 | # to do 83 | 84 | # not in aur 85 | 86 | # 11 Compass 87 | 88 | packer compass-icon-theme --noedit 89 | 90 | 91 | #12 Vertex 92 | 93 | packer vertex-icons-git --noedit 94 | 95 | 96 | #13 Papirus 97 | 98 | packer papirus-icon-theme-gtk --noedit 99 | 100 | 101 | ######################################## 102 | ######## T H E M E S ######### 103 | ######################################## 104 | 105 | # 1 Vertex 106 | #git clone https://github.com/horst3180/vertex-theme /tmp/vertex-theme 107 | #mkdir ~/.themes/vertex-theme 108 | #cp -r /tmp/vertex-theme/common/* ~/.themes/vertex-theme 109 | 110 | packer vertex-themes --noedit 111 | 112 | 113 | # 2 Numix 114 | sudo pacman -S numix-themes --noconfirm 115 | packer numix-themes-archblue --noedit 116 | 117 | 118 | # 3 Ambiance and radiance 119 | packer ubuntu-themes --noedit 120 | 121 | 122 | 123 | # 4 ceti 2 124 | 125 | 126 | packer ceti-2-themes-git --noedit 127 | 128 | # 5 Arch Frost 129 | 130 | 131 | packer arch-frost-gtk-git --noedit 132 | packer arch-frost-dark-gtk-git --noedit 133 | 134 | # 6 Flatabulous 135 | 136 | 137 | packer flatabulous-theme-git --noedit 138 | 139 | # 7 Arc theme 140 | 141 | packer gtk-theme-arc-git --noedit 142 | 143 | 144 | 145 | echo "################################################################" 146 | echo "################### T H E E N D ######################" 147 | echo "################################################################" 148 | -------------------------------------------------------------------------------- /beta/installation_antergos_v2.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # `.-/::/-`` 3 | # .-/osssssssso/. 4 | # :osyysssssssyyys+- 5 | # `.+yyyysssssssssyyyyy+. 6 | # `/syyyyyssssssssssyyyyys-` 7 | # `/yhyyyyysss++ssosyyyyhhy/` 8 | # .ohhhyyyyso++/+oso+syy+shhhho. 9 | # .shhhhysoo++//+sss+++yyy+shhhhs. 10 | # -yhhhhs+++++++ossso+++yyys+ohhddy: 11 | # -yddhhyo+++++osyyss++++yyyyooyhdddy- 12 | # .yddddhso++osyyyyys+++++yyhhsoshddddy` 13 | #`odddddhyosyhyyyyyy++++++yhhhyosddddddo 14 | #.dmdddddhhhhhhhyyyo+++++shhhhhohddddmmh. 15 | #ddmmdddddhhhhhhhso++++++yhhhhhhdddddmmdy 16 | #dmmmdddddddhhhyso++++++shhhhhddddddmmmmh 17 | #-dmmmdddddddhhyso++++oshhhhdddddddmmmmd- 18 | # .smmmmddddddddhhhhhhhhhdddddddddmmmms. 19 | # `+ydmmmdddddddddddddddddddmmmmdy/. 20 | # `.:+ooyyddddddddddddyyso+:.` 21 | #====================================================================================== 22 | 23 | 24 | #====================================================================================== 25 | # themes-icons-pack 26 | # 27 | # Author : Erik Dubois at http://www.erikdubois.be 28 | # License : Distributed under the terms of GNU GPL version 2 or later 29 | # 30 | # AS ALLWAYS, KNOW WHAT YOU ARE DOING. 31 | #====================================================================================== 32 | 33 | 34 | # install - yaourt and then packer first 35 | 36 | 37 | 38 | ######################################## 39 | ######## T H E M E S ######### 40 | ######################################## 41 | 42 | # V E R T E X 43 | #git clone https://github.com/horst3180/vertex-theme /tmp/vertex-theme 44 | #mkdir ~/.themes/vertex-theme 45 | #cp -r /tmp/vertex-theme/common/* ~/.themes/vertex-theme 46 | packer vertex-themes-git --noedit --noconfirm 47 | 48 | 49 | # N U M I X 50 | sudo pacman -S numix-themes --noconfirm 51 | packer numix-circle-icon-theme-git --noedit --noconfirm 52 | packer numix-themes-archblue --noedit --noconfirm 53 | 54 | 55 | # A M B I A N C E 56 | packer ubuntu-themes --noedit --noconfirm 57 | 58 | 59 | 60 | # U L T R A F L A T 61 | 62 | packer ultra-flat-icons --noedit --noconfirm 63 | 64 | 65 | # C E T I 66 | 67 | packer ceti-2-themes-git --noedit --noconfirm 68 | 69 | 70 | # A R C H N U M I X F R O S T T H E M E S 71 | 72 | packer numix-frost-themes --noedit --noconfirm 73 | 74 | 75 | # E V O P O P 76 | packer evopop-gtk-theme-git --noedit --noconfirm 77 | 78 | 79 | ######################################## 80 | ######## I C O N S ######### 81 | ######################################## 82 | 83 | # S A R D I 84 | 85 | 86 | # E V O P O P 87 | #git clone https://github.com/solus-project/evopop-icon-theme.git /tmp/evopop-icon-theme 88 | #mkdir ~/.icons/evopop-icon-theme 89 | #cp -r /tmp/evopop-icon-theme/EvoPop/* ~/.icons/evopop-icon-theme 90 | 91 | packer evopop-icon-theme --noconfirm 92 | 93 | 94 | 95 | 96 | # F L A T T R 97 | 98 | git clone https://github.com/NitruxSA/flattr-icons.git /tmp/flattr-icons 99 | mkdir ~/.icons/Flattr 100 | mkdir ~/.icons/Flattr\ Dark 101 | cp -r /tmp/flattr-icons/Flattr/* ~/.icons/Flattr 102 | cp -r /tmp/flattr-icons/Flattr\ Dark/* ~/.icons/Flattr\ Dark 103 | 104 | 105 | 106 | # S U P E R F L A T R E M I X I C O N S 107 | 108 | git clone https://github.com/daniruiz/Super-Flat-Remix.git /tmp/Super-Flat-Remix 109 | mkdir ~/.icons/Super-Flat-Remix 110 | cp -r /tmp/Super-Flat-Remix/Super\ Flat\ Remix/* ~/.icons/Super-Flat-Remix 111 | 112 | 113 | 114 | 115 | # F L A T W O K E N 116 | 117 | git clone https://github.com/alecive/FlatWoken.git /tmp/FlatWoken 118 | mkdir ~/.icons/FlatWoken 119 | mkdir ~/.icons/FlatWokenMin 120 | cp -r /tmp/FlatWoken/FlatWoken/* ~/.icons/FlatWoken 121 | cp -r /tmp/FlatWoken/FlatWokenMin/* ~/.icons/FlatWokenMin 122 | 123 | 124 | echo "################################################################" 125 | echo "################### T H E E N D ######################" 126 | echo "################################################################" -------------------------------------------------------------------------------- /all-in-once-installation_deb_icons.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # 4 | # MMMMMMMMMMMMMMMMMMMMMMMMMmds+. 5 | # MMm----::-://////////////oymNMd+` 6 | # MMd /++ -sNMd: 7 | # MMNso/` dMM `.::-. .-::.` .hMN: 8 | # ddddMMh dMM :hNMNMNhNMNMNh: `NMm 9 | # NMm dMM .NMN/-+MMM+-/NMN` dMM 10 | # NMm dMM -MMm `MMM dMM. dMM 11 | # NMm dMM -MMm `MMM dMM. dMM 12 | # NMm dMM .mmd `mmm yMM. dMM 13 | # NMm dMM` ..` ... ydm. dMM 14 | # hMM- +MMd/-------...-:sdds dMM 15 | # -NMm- :hNMNNNmdddddddddy/` dMM 16 | # -dMNs-``-::::-------.`` dMM 17 | # `/dMNmy+/:-------------:/yMMM 18 | # ./ydNMMMMMMMMMMMMMMMMMMMMM 19 | # \.MMMMMMMMMMMMMMMMMMM 20 | # 21 | # 22 | # 23 | ################################################################################################################## 24 | # Written to be used on 64 bits computers 25 | # Author : Erik Dubois 26 | # Website : http://www.erikdubois.be 27 | ################################################################################################################## 28 | # 29 | # More from Erik Dubois 30 | # 31 | # Aurora Conky 32 | # at http://sourceforge.net/projects/auroraconkytheme/ 33 | # Explanation on the use of this theme can be found at 34 | # http://erikdubois.be/category/linux/aurora-conky/ 35 | # 36 | # Aureola Conky 37 | # Collections of nice conky's with lua syntax 38 | # https://github.com/erikdubois/Aureola 39 | # 40 | # Sardi icons 41 | # Many different styles of icons from colourfull, monochrome, white, circle 42 | # https://sourceforge.net/projects/sardi/ 43 | # 44 | # Super Ultra Flat Numix Remix 45 | # Colourfull and playfull icons 46 | # https://github.com/erikdubois/Super-Ultra-Flat-Numix-Remix 47 | # 48 | # Check out the github - many more scripts for automatic installation of Linux Systems. 49 | # 50 | # 51 | ################################################################################################################## 52 | # 53 | # DO NOT JUST RUN THIS. EXAMINE AND JUDGE. AT YOUR OWN RISK. 54 | # 55 | ################################################################################################################## 56 | 57 | 58 | 59 | # needed to download files 60 | 61 | sudo apt-get install git -y 62 | 63 | 64 | 65 | ######################################## 66 | ######## I C O N S ######### 67 | ######################################## 68 | 69 | 70 | echo "#####################################################" 71 | echo "#####################################################" 72 | echo "#####################################################" 73 | echo "#####################################################" 74 | echo "############ ICONS #################" 75 | echo "#####################################################" 76 | echo "#####################################################" 77 | echo "#####################################################" 78 | echo "#####################################################" 79 | 80 | 81 | # HOMEBREW 82 | 83 | sh icons-sardi-v2.sh 84 | sh icons-sardi-extra-v2.sh 85 | 86 | sh icons-surfn-v1.sh 87 | 88 | 89 | 90 | # THIRD PARTIES 91 | 92 | 93 | 94 | sh icons-numix-circle-latest.sh 95 | 96 | 97 | sh icons-evopop-latest.sh 98 | 99 | 100 | sh icons-flattr-latest.sh 101 | 102 | 103 | sh icons-super-flat-remix-latest.sh 104 | 105 | 106 | sh icons-ultra-flat-latest.sh 107 | 108 | 109 | sh icons-flatwoken-latest.sh 110 | 111 | 112 | sh icons-moka-latest.sh 113 | 114 | 115 | sh icons-dalisha-latest.sh 116 | 117 | 118 | sh icons-compass-latest.sh 119 | 120 | 121 | sh icons-vertex-latest.sh 122 | 123 | 124 | sh icons-papirus-latest.sh 125 | 126 | 127 | sh icons-lacapitaine-latest.sh 128 | 129 | 130 | sh icons-oranchelo-latest.sh 131 | 132 | 133 | sh icons-paper-latest.sh 134 | 135 | 136 | echo "################################################################" 137 | echo "#### END OF INSTALLATION OF ICONS ##########" 138 | echo "################################################################" 139 | -------------------------------------------------------------------------------- /all-in-once-installation_deb_themes.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # 4 | # MMMMMMMMMMMMMMMMMMMMMMMMMmds+. 5 | # MMm----::-://////////////oymNMd+` 6 | # MMd /++ -sNMd: 7 | # MMNso/` dMM `.::-. .-::.` .hMN: 8 | # ddddMMh dMM :hNMNMNhNMNMNh: `NMm 9 | # NMm dMM .NMN/-+MMM+-/NMN` dMM 10 | # NMm dMM -MMm `MMM dMM. dMM 11 | # NMm dMM -MMm `MMM dMM. dMM 12 | # NMm dMM .mmd `mmm yMM. dMM 13 | # NMm dMM` ..` ... ydm. dMM 14 | # hMM- +MMd/-------...-:sdds dMM 15 | # -NMm- :hNMNNNmdddddddddy/` dMM 16 | # -dMNs-``-::::-------.`` dMM 17 | # `/dMNmy+/:-------------:/yMMM 18 | # ./ydNMMMMMMMMMMMMMMMMMMMMM 19 | # \.MMMMMMMMMMMMMMMMMMM 20 | # 21 | # 22 | # 23 | ################################################################################################################## 24 | # Written to be used on 64 bits computers 25 | # Author : Erik Dubois 26 | # Website : http://www.erikdubois.be 27 | ################################################################################################################## 28 | # 29 | # More from Erik Dubois 30 | # 31 | # Aurora Conky 32 | # at http://sourceforge.net/projects/auroraconkytheme/ 33 | # Explanation on the use of this theme can be found at 34 | # http://erikdubois.be/category/linux/aurora-conky/ 35 | # 36 | # Aureola Conky 37 | # Collections of nice conky's with lua syntax 38 | # https://github.com/erikdubois/Aureola 39 | # 40 | # Sardi icons 41 | # Many different styles of icons from colourfull, monochrome, white, circle 42 | # https://sourceforge.net/projects/sardi/ 43 | # 44 | # Super Ultra Flat Numix Remix 45 | # Colourfull and playfull icons 46 | # https://github.com/erikdubois/Super-Ultra-Flat-Numix-Remix 47 | # 48 | # Check out the github - many more scripts for automatic installation of Linux Systems. 49 | # 50 | # 51 | ################################################################################################################## 52 | # 53 | # DO NOT JUST RUN THIS. EXAMINE AND JUDGE. AT YOUR OWN RISK. 54 | # 55 | ################################################################################################################## 56 | 57 | 58 | 59 | # needed to download files 60 | 61 | sudo apt-get install git -y 62 | 63 | 64 | 65 | 66 | echo "#####################################################" 67 | echo "#####################################################" 68 | echo "#####################################################" 69 | echo "#####################################################" 70 | echo "############ THEMES #################" 71 | echo "#####################################################" 72 | echo "#####################################################" 73 | echo "#####################################################" 74 | echo "#####################################################" 75 | 76 | ######################################## 77 | ######## T H E M E S ######### 78 | ######################################## 79 | 80 | 81 | # HOMEBREW 82 | 83 | 84 | CIN_VERSION="$(cinnamon --version)" 85 | #echo $CIN_VERSION 86 | # last two are cut off 87 | # cinamon 3.2.2 88 | CIN_VERSION=${CIN_VERSION::-2} 89 | #echo $CIN_VERSION 90 | 91 | if [ "$CIN_VERSION" = "Cinnamon 3.2" ]; then 92 | 93 | echo "Installing for Cinnamon 3.2" 94 | sh theme-mint-y-colora-collection-3.2-v1.sh 95 | sh theme-arc-colora-collection-3.2-v1.sh 96 | 97 | else 98 | 99 | echo "Installing for Cinnamon 3.0" 100 | sh theme-mint-y-colora-collection-3.0-v1.sh 101 | sh theme-arc-colora-collection-3.0-v1.sh 102 | fi 103 | 104 | 105 | 106 | 107 | # THIRD PARTY 108 | 109 | # Ambiance radiance 110 | # omitted it because of too many themes in one 111 | # it has its own script 112 | 113 | 114 | sh theme-arc-latest.sh 115 | 116 | 117 | 118 | sh theme-arch-frost-dark-latest.sh 119 | sh theme-arch-frost-light-latest.sh 120 | 121 | 122 | 123 | sh theme-ceti-2-latest.sh 124 | 125 | 126 | sh theme-flatabulous-latest.sh 127 | 128 | 129 | sh themes-numix-latest.sh 130 | 131 | 132 | sh theme-vertex-latest.sh 133 | 134 | 135 | sh theme-minty-transparent-colora-v1.sh 136 | 137 | 138 | echo "################################################################" 139 | echo "############## END OF INSTALLATION OF THEMES ##########" 140 | echo "################################################################" 141 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Themes Icons Pack 2 | 3 | The idea is to gather all great icon themes and desktop themes that work on a **Linux Mint 18 Cinnamon** system but often also work on other systems. 4 | 5 | 6 | 7 | #Two scripts to install all icons and themes 8 | 9 | But **fair warning** your icon or theme selection manager will have a LOT of choices then. 10 | 11 | 12 | all-in-once-installation_deb_icons.sh 13 | 14 | all-in-once-installation_deb_themes.sh 15 | 16 | is for linux mint, ubuntu, debian, elementary and all derivatives of debian using apt-get and other commands. 17 | 18 | 19 | #One script to uninstall all the themes and icons 20 | 21 | Uninstalling can be as important as installing, I made also a 22 | 23 | uninstall-all-icons-and-themes.sh 24 | 25 | that will uninstall all icons, themes and repositories. 26 | 27 | 28 | # Note 29 | 30 | Because ambiance and radiance themes 'pollute' our theme manager I have added a script to install/delete them selectively. 31 | 32 | install-ambiance-and-radiance.be 33 | uninstall-ambiance-and-radiance.sh 34 | 35 | 36 | As a rule of thumb I will install themes from github and other preferably in the home folder. 37 | 38 | Beware themes will be copied to ~/.themes 39 | 40 | Beware icons will be copied to ~/.icons 41 | 42 | Beware cursors will be copied to ~/.icons 43 | 44 | If provided with a deb, tar.gz or a script the installation ends up (most likely) in 45 | 46 | /usr/share/themes 47 | 48 | /usr/share/icons 49 | 50 | 51 | Remove manually if you have already an older/adapted version. 52 | 53 | 54 | It is up to you to activate them with your theme/icon manager. 55 | 56 | 57 | 58 | 59 | # ICONS HOMEBREW 60 | 61 | 62 | # Sardi icon theme 63 | 64 | Sardi has its origins in Ardis but has evolved in a new icon set of 18 variations with 5 core sets. 65 | 66 | Download at http://sourceforge.net/projects/sardi/ 67 | 68 | Read more at http://erikdubois.be/category/sardi-icons/ 69 | 70 | Run this script to install the latest version 71 | 72 | icons-sardi-latest.sh 73 | 74 | 75 | ![Screenshots](http://i.imgur.com/T9gN544.jpg) 76 | 77 | 78 | ![Screenshots](http://i.imgur.com/iS6zFFU.jpg) 79 | 80 | 81 | ![Screenshots](http://i.imgur.com/IeZFWvs.jpg) 82 | 83 | 84 | ![Screenshots](http://i.imgur.com/lrQ27Xs.jpg) 85 | 86 | 87 | 88 | 89 | # Sardi Extra 90 | 91 | Sardi totals up to 54 Sardi variations including Sardi and Sardi Extra. 92 | 93 | These are all runs of the colour changing scripts. All icon themes in Sardi with the name COLORA have scripts to change the colours the way YOU want. 94 | 95 | 16 million colours = 16 million choices 96 | 97 | These icons are the result of perfecting the scripts. 98 | 99 | https://github.com/erikdubois/Sardi-Extra 100 | 101 | 102 | Run this script to install the latest version 103 | 104 | icons-sardi-extra-latest.sh 105 | 106 | 107 | 108 | 109 | # Surfn 110 | --------------------------------- 111 | 112 | This icon theme is based on an older one i.e. yltra flat also on github. 113 | 114 | This is an exercise in changing the directories from scalable/... to 22x22/... 115 | 116 | **Surfn** (old name Super Ultra Flat Numix Remix) will be updated not the Yltra Flat icon set. 117 | 118 | Run this script to have them installed : 119 | 120 | icons-surfn-latest.sh 121 | 122 | 123 | ![Screenshots](http://i.imgur.com/i1FGsR9.jpg) 124 | 125 | 126 | ![Screenshots](http://i.imgur.com/EocrQ70.png) 127 | 128 | 129 | 130 | # THEMES HOMEBREW 131 | 132 | These themes have been altered with scripts to change the colour accents. 133 | 134 | More info on these githubs and on http://erikdubois.be 135 | 136 | Arc : https://github.com/erikdubois/arc-theme-colora 137 | Arc : http://erikdubois.be/change-colour-arc-theme-horst3180/ 138 | 139 | Mint-Y : https://github.com/erikdubois/Mint-Y-Colora-Theme 140 | Mint-Y : http://erikdubois.be/ 141 | 142 | 143 | 144 | # Arc based themes 145 | 146 | 147 | ##Arc Breeze 148 | 149 | ![Screenshots](http://i.imgur.com/M90Lv19.jpg) 150 | 151 | ##Arc Evopop 152 | 153 | ![Screenshots](http://i.imgur.com/0t8HtAP.jpg) 154 | 155 | ##Arc Faba 156 | 157 | ![Screenshots](http://i.imgur.com/wdRZjyT.jpg) 158 | 159 | ## Arc Luv 160 | 161 | ![Screenshots](http://i.imgur.com/c3OTQLZ.jpg) 162 | 163 | ## Arc Numix 164 | 165 | ![Screenshots](http://i.imgur.com/vuZ9N2j.jpg) 166 | 167 | ## Arc Paper 168 | 169 | ![Screenshots](http://i.imgur.com/uB4WWNW.jpg) 170 | 171 | ## Arc Polo 172 | 173 | ![Screenshots](http://i.imgur.com/PBHyYrC.jpg) 174 | 175 | ## Arc Red 176 | 177 | ![Screenshots](http://i.imgur.com/6FcWAzP.jpg) 178 | 179 | ##Arc Sun 180 | 181 | ![Screenshots](http://i.imgur.com/QnFBXN7.jpg) 182 | 183 | ## Arc Tomato 184 | 185 | ![Screenshots](http://i.imgur.com/jhuHWu8.png) 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | # Mint-Y based themes 194 | 195 | These themes have been altered with scripts to change the colour accents. 196 | 197 | More info on these githubs and on http://erikdubois.be 198 | 199 | Mint-Y : https://github.com/erikdubois/Mint-Y-Colora-Theme 200 | Mint-Y : http://erikdubois.be 201 | 202 | All themes are sorted alphabetically. 203 | 204 | ## Mint-Y-Alu 205 | 206 | https://github.com/erikdubois/Mint-Y-Colora-Theme 207 | 208 | ![Screenshots](http://i.imgur.com/MUu3Uij.jpg) 209 | 210 | ## Mint-Y-Arc 211 | 212 | https://github.com/erikdubois/Mint-Y-Colora-Theme 213 | 214 | ![Screenshots](http://i.imgur.com/5C2rqSC.jpg) 215 | 216 | ## Mint-Y-Arch 217 | 218 | https://github.com/erikdubois/Mint-Y-Colora-Theme 219 | 220 | ![Screenshots](http://i.imgur.com/ZM0YY5a.jpg) 221 | 222 | ## Mint-Y-Dark-Faba 223 | 224 | ![Screenshots](http://i.imgur.com/lQs3os3.jpg) 225 | 226 | ##Mint-Y-Fire 227 | 228 | https://github.com/erikdubois/Mint-Y-Colora-Theme 229 | 230 | ![Screenshots](http://i.imgur.com/bevG7SN.jpg) 231 | 232 | ## Mint-Y-Lightning 233 | 234 | https://github.com/erikdubois/Mint-Y-Colora-Theme 235 | 236 | ![Screenshots](http://i.imgur.com/nDHqnRn.jpg) 237 | 238 | ## Mint-Y-Paper 239 | 240 | https://github.com/erikdubois/Mint-Y-Colora-Theme 241 | 242 | ![Screenshots](http://i.imgur.com/0sUmwY7.jpg) 243 | 244 | ## Mint-Y-Polo 245 | 246 | https://github.com/erikdubois/Mint-Y-Colora-Theme 247 | 248 | ![Screenshots](http://i.imgur.com/fHOkfbJ.jpg) 249 | 250 | ## Mint-Y-Sun 251 | 252 | https://github.com/erikdubois/Mint-Y-Colora-Theme 253 | 254 | ![Screenshots](http://i.imgur.com/6YJg0RE.jpg) 255 | 256 | 257 | 258 | 259 | # Minty Transparent Colora 260 | 261 | A script is included to change this transparent theme to follow your colour choice. 262 | 263 | 264 | ![Screenshots](http://i.imgur.com/w81ltGi.jpg) 265 | 266 | 267 | ![Screenshots](http://i.imgur.com/W25pPsT.jpg) 268 | 269 | 270 | ![Screenshots](http://i.imgur.com/ie5mYZS.jpg) 271 | 272 | 273 | 274 | # ICONS THIRD PARTIES 275 | 276 | 277 | 278 | # Numix circle icons 279 | 280 | https://github.com/numixproject/numix-icon-theme-circle 281 | 282 | 283 | Numix is used as a fall-back icon theme for Sardi icon theme. So you should install it. Whenever an icon is not yet made in Sardi, it will use the icon of Numix if they have made it. 284 | 285 | ![Screenshots](http://i.imgur.com/2je4qz2.jpg) 286 | 287 | 288 | 289 | # Evopop icons 290 | 291 | https://github.com/solus-project/evopop-icon-theme 292 | 293 | Since not all icons are available or we see an icon from Mint-Y icon theme, we take the SURFN icon theme as a fallback icon theme to fill in the gaps. 294 | The following lines have been added to the script to change the inherits line in order to get the missing icons : 295 | 296 | 297 | echo "################################################################" 298 | echo "Renaming the content of the index.theme" 299 | sudo find /usr/share/icons/EvoPop -name "index.theme" -type f -exec sed -i 's/'Inherits=gnome,hicolor'/'Inherits=Surfn,gnome,hicolor'/g' {} \; 300 | 301 | 302 | ![Screenshots](http://i.imgur.com/RQu385l.png) 303 | 304 | 305 | 306 | # Flattr icons 307 | 308 | renamed to Lüv and Lüv Dark 309 | 310 | 311 | https://github.com/NitruxSA/flattr-icons 312 | 313 | ![Screenshots](http://i.imgur.com/U48ytG3.jpg) 314 | 315 | 316 | 317 | # Superflat remix icons 318 | 319 | 320 | https://github.com/daniruiz/Super-Flat-Remix 321 | 322 | 323 | ![Screenshots](http://i.imgur.com/3b0T4om.jpg) 324 | 325 | 326 | 327 | 328 | # Ultra flat icons 329 | 330 | blue, green, orange and orange bright 331 | 332 | ![Screenshots](http://i.imgur.com/9M2gce8.jpg) 333 | 334 | ![Screenshots](http://i.imgur.com/xrEc2gA.jpg) 335 | 336 | 337 | 338 | 339 | # Flatwoken icons 340 | 341 | 342 | git clone https://github.com/alecive/FlatWoken.git 343 | 344 | ![Screenshots](http://i.imgur.com/oDJ3j3f.jpg) 345 | 346 | 347 | ![Screenshots](http://i.imgur.com/UUfy3Zs.jpg) 348 | 349 | 350 | 351 | 352 | 353 | # Moka and Faba 354 | 355 | Moka icon theme inherits from Faba. We will install it also. 356 | 357 | These can also be installed and will NOT be installed. 358 | 359 | 360 | 361 | ![Screenshots](http://i.imgur.com/AjTBLY8.png) 362 | 363 | ![Screenshots](http://i.imgur.com/ffM4U5G.jpg) 364 | 365 | 366 | 367 | 368 | 369 | # Dalisha 370 | 371 | Latest can be found on gnome-look.org 372 | 373 | http://gnome-look.org/content/show.php?content=166286&forumpage=0 374 | 375 | Downloads came from here. Not working for the moment. 376 | 377 | https://github.com/manson9/dalisha-icon-theme 378 | 379 | 380 | ![Screenshots](http://i.imgur.com/2iw8473.png) 381 | 382 | 383 | 384 | ![Screenshots](http://i.imgur.com/5HFf56j.jpg) 385 | 386 | 387 | 388 | 389 | # Compass 390 | 391 | 392 | ![Screenshots](http://i.imgur.com/FSjiUN8.jpg) 393 | 394 | 395 | ![Screenshots](http://i.imgur.com/5jsohV8.jpg) 396 | 397 | 398 | 399 | 400 | # Vertex 401 | 402 | Inherits from Moka !! 403 | 404 | https://github.com/horst3180/vertex-icons 405 | 406 | ![Screenshots](http://i.imgur.com/Xj1Aro5.jpg) 407 | 408 | 409 | 410 | 411 | # Papirus icons 412 | 413 | 414 | 415 | Also suitable for linux mint cinnamon although KDE is mentioned 416 | 417 | 418 | ![Screenshots](http://i.imgur.com/icCgIOi.jpg) 419 | 420 | 421 | ![Screenshots](http://i.imgur.com/oX4KjdJ.jpg) 422 | 423 | 424 | 425 | 426 | # Papirus Dark Gtk 427 | 428 | 429 | ![Screenshots](http://i.imgur.com/So6QnE2.jpg) 430 | 431 | 432 | 433 | 434 | # La Captaine 435 | 436 | https://github.com/keeferrourke/la-capitaine-icon-theme.git 437 | 438 | 439 | ![Screenshots](http://i.imgur.com/RqP8Jcd.png) 440 | 441 | 442 | 443 | # Oranchelo 444 | 445 | We will get the latest icons from github. 446 | 447 | Since not all icons are available or we see an icon from Mint-Y icon theme, we take the SURFN icon theme as a fallback icon theme to fill in the gaps. 448 | The following lines have been added to the script to change the inherits line in order to get the missing icons : 449 | 450 | 451 | echo "################################################################" 452 | echo "Renaming the content of the index.theme" 453 | find $HOME"/.icons/Oranchelo" -name "index.theme" -type f -exec sed -i 's/'Inherits=gnome'/'Inherits=Surfn,gnome,hicolor'/g' {} \; 454 | 455 | 456 | 457 | https://github.com/OrancheloTeam/oranchelo-icon-theme 458 | 459 | ![Screenshots](http://i.imgur.com/xAhJZRQ.jpg) 460 | 461 | 462 | 463 | # Paper 464 | 465 | We will get the latest icons from github. 466 | 467 | Since not all icons are available or we see an icon from Mint-Y icon theme, we take the SURFN icon theme as a fallback icon theme to fill in the gaps. 468 | The following lines have been added to the script to change the inherits line in order to get the missing icons : 469 | 470 | 471 | echo "################################################################" 472 | echo "Renaming the content of the index.theme" 473 | sudo find /usr/share/icons/Paper -name "index.theme" -type f -exec sed -i 's/'Inherits=Adwaita,gnome,hicolor'/'Inherits=Surfn,Adwaita,gnome,hicolor'/g' {} \; 474 | 475 | 476 | https://github.com/snwh/paper-icon-theme 477 | 478 | ![Screenshots](http://i.imgur.com/h3Jo2K1.jpg) 479 | 480 | 481 | 482 | 483 | 484 | 485 | 486 | 487 | # THEMES THIRD PARTY 488 | 489 | 490 | 491 | #Ambiance Theme and Radiance colors 492 | 493 | http://www.ravefinity.com/p/download-ambiance-radiance-colors.html 494 | 495 | Since this one includes so many variations, it is NOT installed in the 496 | 497 | installation_deb_themes.sh 498 | 499 | script. You can install via a separate script. 500 | 501 | 502 | ![Screenshots](http://i.imgur.com/fGtUpoB.jpg) 503 | 504 | ![Screenshots](http://i.imgur.com/ckr7PBZ.jpg) 505 | 506 | 507 | 508 | 509 | #Arc theme 510 | 511 | https://github.com/horst3180/arc-theme 512 | 513 | ![Screenshots](http://i.imgur.com/2NtD8e9.jpg) 514 | 515 | 516 | 517 | 518 | 519 | #Arch Frost theme 520 | 521 | 522 | http://osendott.github.io/arch-frost/ 523 | 524 | 525 | ##Arch Frost GTK 526 | 527 | ![Screenshots](http://i.imgur.com/dpKjhQ2.jpg) 528 | 529 | ![Screenshots](http://i.imgur.com/Md8hgZi.png) 530 | 531 | ##Arch Frost GTK Dark 532 | 533 | ![Screenshots](http://i.imgur.com/RAi8F5z.jpg) 534 | 535 | 536 | ![Screenshots](http://i.imgur.com/GrNV00h.jpg) 537 | 538 | 539 | 540 | 541 | #Ceti 2 Theme 542 | 543 | http://horst3180.deviantart.com/art/Ceti-445892596 544 | 545 | https://github.com/horst3180/ceti-2-theme 546 | 547 | 548 | ![Screenshots](http://i.imgur.com/qD53UAV.png) 549 | 550 | ![Screenshots](http://i.imgur.com/vvey3Cm.jpg) 551 | 552 | 553 | 554 | #Flatabulous theme 555 | 556 | 557 | https://github.com/anmoljagetia/Flatabulous 558 | 559 | 560 | ![Screenshots](http://i.imgur.com/Tmm3V1a.jpg) 561 | 562 | 563 | ![Screenshots](http://i.imgur.com/l7uCAZ8.jpg) 564 | 565 | 566 | 567 | #Numix Daily theme 568 | 569 | 570 | Installed when you install the numix circle icons. 571 | 572 | This theme has been adapted to be softer on the eyes. Background of file-manager is grey. 573 | 574 | ![Screenshots](http://i.imgur.com/KrGtFk7.png) 575 | 576 | 577 | 578 | #Vertex theme (dark and light) 579 | 580 | https://github.com/horst3180/Vertex-theme 581 | 582 | This theme can be dark and light. 583 | 584 | 585 | ![Screenshots](http://i.imgur.com/KlTeQK7.png) 586 | 587 | ![Screenshots](http://i.imgur.com/efDJTp1.jpg) 588 | 589 | I have made an article to explain the complete installation also browsers for vertex here : 590 | 591 | http://erikdubois.be/how-to-completely-install-all-aspects-of-the-vertex-dark-theme-on-linux-mint-17-3/ 592 | 593 | # F A Q 594 | -------------------- 595 | 596 | #What can you do if the script does not execute? 597 | 598 | Since I sometimes forget to make the script executable, I include here what you can do to solve that. 599 | 600 | A script can only run when it is marked as an executable. 601 | 602 | ls -al 603 | 604 | Above code will reveal if a script has an "x". X meaning executable. 605 | Google "chmod" and "execute" and you will find more info. 606 | 607 | For now if this happens, you should apply this code in the terminal and add the file name. 608 | 609 | chmod +x typeyourfilename 610 | 611 | Then you can execute it by typing 612 | 613 | ./typeyourfilename 614 | 615 | Or you can follow these steps 616 | 617 | ![Screenshots](http://i.imgur.com/vXsOaFL.gif) 618 | 619 | 620 | ------------------------------------------------- 621 | #But that is the fun in Linux. 622 | 623 | You can do whatever Y O U want. 624 | 625 | Share the knowledge. 626 | 627 | I share my knowledge at http://erikdubois.be 628 | -------------------------------------------------- 629 | 630 | 631 | 632 | --------------------------------------------------------------------------------