This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| cd /tmp | |
| rm plank-preferences.dockitem; | |
| plank-preferences.sh; | |
| rm p-p-dockitem-c.sh; | |
| rm $HOME/.local/share/applications/plank-preferences.desktop; | |
| rm $HOME/.config/plank/dock1/launchers/plank-preferences.dockitem | |
| clear | |
| #launcher, desktop file | |
| wget http://ur1.ca/k5kkz -O plank-preferences.desktop |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| sudo rm -Rf /tmp/Icon-Set-Forge-master ; | |
| sudo rm -Rf /usr/share/IconSetForge ; | |
| sudo rm /usr/bin/iconsetforge ; | |
| sudo apt-get install qmake-qt4 qt4-designer unzip -y | |
| cd /tmp | |
| wget https://github.com/mank319/Icon-Set-Forge/archive/master.zip | |
| unzip master.zip | |
| cd Icon-Set-Forge-master/Code | |
| qmake-qt4 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Author: rhoconlinux, http://rhoconlinux.wordpress.com | |
| # ------ | |
| # Credit for the spinner > Tasos Latsas https://github.com/tlatsas/bash-spinner | |
| ##########################spinner funcion starts | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| while true ;do | |
| if [ -f .delete-to-reload-gnome-shell ] ;then | |
| sleep 1; | |
| else | |
| touch ~/.delete-to-reload-gnome-shell; | |
| gnome-shell --replace ; | |
| fi | |
| done; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| cd | |
| rm .delete-to-reload-gnome-shell |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Desktop Entry] | |
| Name=gnome-restarter-deamon | |
| GenericName=gnome-restarter-deamon | |
| Comment=gnome-restarter-deamon | |
| Icon=gnome-terminal | |
| Exec=gnome-restarter-deamon | |
| Terminal=false | |
| Type=Application | |
| Categories=System |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo sh -c 'echo "deb http://repository.spotify.com/ stable non-free" > /etc/apt/sources.list.d/spotify.list' && sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 94558F59 && sudo apt-get update && sudo apt-get install spotify-client -y --force-yes ; cd |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo apt-get install x11-utils pulseaudio-utils libnotify-bin vlc unzip gcc -y && cd && rm -Rf ~/bin ; rm -Rf ~/.installer-spotify-ad-killer ; rm -R ~/.installer-spotify-ad-killer; rm -R ~/.installer-sopotify-adkiller-git; cd ~/.local/share/applications/ && rm Spo* -f ; mkdir -p ~/.installer-spotify-ad-killer && cd ~/.installer-spotify-ad-killer && wget https://github.com/SecUpwN/Spotify-AdKiller/archive/master.zip && unzip master.zip && cd Spotify-AdKiller-master && sed -i 's/INSTALLDIR="$HOME\/bin"/INSTALLDIR="\/usr\/local\/bin"/g' install.sh && cat install.sh | grep usr/ && sudo bash install.sh && mkdir -p $HOME/.config/Spotify-AdKiller/ && sudo chown -R $USER:$USER ~/.config/Spotify-AdKiller/ && cp -a ~/.installer-spotify-ad-killer/Spotify-AdKiller-master/Spotify-AdKiller.cfg $HOME/.config/Spotify-AdKiller/ && cat $HOME/.config/Spotify-AdKiller/Spotify-AdKiller.cfg | grep CUSTOM_MODE && sed -i 's/CUSTOM_MODE=""/CUSTOM_MODE="simple"/g' $HOME/.config/Spotify-AdKiller/Spotify-AdKiller.cfg ; echo "changed to |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Author: rhoconlinux, http://rhoconlinux.wordpress.com | |
| # ------ | |
| # Credit for the spinner > Tasos Latsas https://github.com/tlatsas/bash-spinner | |
| ##########################spinner funcion starts | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| echo '# Decrease swap usage to a more reasonable level' | sudo tee --append /etc/sysctl.conf > /dev/null | |
| echo 'vm.swappiness=5' | sudo tee --append /etc/sysctl.conf > /dev/null | |
| echo '# Improve cache management' | sudo tee --append /etc/sysctl.conf > /dev/null | |
| echo 'vm.vfs_cache_pressure=40' | sudo tee --append /etc/sysctl.conf > /dev/null | |
| cat /etc/sysctl.conf |