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
| [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
| #!/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
| #!/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 | |
| # 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 | |
| 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 | |
| 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 | |
| echo "Creating plank themer dockitem..." | |
| USERNAME=$(whoami) | |
| ABS_ADDR=/home/$USERNAME/.local/share/applications/plank-preferences.desktop | |
| cd $HOME/.config/plank/dock1/ | |
| touch $HOME/.config/plank/dock1/launchers/plank-preferences.dockitem | |
| echo \[PlankItemsDockItemPreferences\] >> $HOME/.config/plank/dock1/launchers/plank-preferences.dockitem | |
| echo Launcher=$ABS_ADDR >> $HOME/.config/plank/dock1/launchers/plank-preferences.dockitem |
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=plank-preferences | |
| GenericName=Plank Preferences | |
| Comment=Plank Preferences | |
| Icon=plank | |
| Exec=plank --preferences | |
| Terminal=false | |
| Type=Application | |
| Categories=System | |
| Name[es_ES]=plank-preferences |
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
| # /etc/crontab: system-wide crontab | |
| # Unlike any other crontab you don't have to run the `crontab' | |
| # command to install the new version when you edit this file | |
| # and files in /etc/cron.d. These files also have username fields, | |
| # that none of the other crontabs do. | |
| SHELL=/bin/sh | |
| PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin |