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=genymotion | |
| GenericName=Genymotion | |
| Comment=Genymotion Android VM | |
| Icon=genymotion | |
| Exec=genymotion | |
| Terminal=false | |
| Type=Application | |
| Categories=System | |
| Name[es_ES]=genymotion |
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
| https://api.github.com/users/rhoconlinux/gists |
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=jdownloader | |
| GenericName=jdownloader | |
| Comment=Jdownloader 2 | |
| Icon=jdownloader | |
| Exec=jdownloader | |
| Terminal=false | |
| Type=Application | |
| Categories=System | |
| Name[es_ES]=jdownloader |
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 | |
| /opt/IBM/SPSS/Statistics/21/bin/stats -singleseat -nologo |
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=SPSS | |
| GenericName=SPSS | |
| Comment=SPSS 21 | |
| Icon=spss | |
| Exec=spss | |
| Terminal=false | |
| Type=Application | |
| Categories=System | |
| Name[es_ES]=SPSS |
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
| [Enable hibernate by default in upower] | |
| Identity=unix-user:* | |
| Action=org.freedesktop.upower.hibernate | |
| ResultActive=yes | |
| [Enable hibernate by default in logind] | |
| Identity=unix-user:* | |
| Action=org.freedesktop.login1.hibernate;org.freedesktop.login1.handle-hibernate-key;org.freedesktop.login1;org.freedesktop.login1.hibernate-multiple-sessions;org.freedesktop.login1.hibernate-ignore-inhibit | |
| ResultActive=yes |
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/ | |
| wget https://gist.githubusercontent.com/rhoconlinux/4dabbc8ef0ae7926e823/raw/b7468c08d49d1d6cf0c535f1e25843d6ddfad9ff/com.ubuntu.desktop.pkla -O com.ubuntu.desktop.pkla | |
| sudo mkdir -p /etc/polkit-1/localauthority/10-vendor.d/ | |
| mv com.ubuntu.desktop.pkla /etc/polkit-1/localauthority/10-vendor.d/ | |
| cd | |
| clear | |
| echo "Hibernate installed. Now logout & login to set it as active." |
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 | |
| clear | |
| free -m | |
| sudo sync && sudo sysctl -w vm.drop_caches=3 | |
| sudo swapoff -a | |
| sudo swapon -a | |
| sudo sync && sudo sysctl -w vm.drop_caches=3 | |
| free -m | |
| sudo fstrim -v / |
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 | |
| sleep 5 ; | |
| # stop it if it's running | |
| dropbox stop &>/dev/null | |
| killall dropbox ; | |
| rm /.config/autostart/dropbox.desktop ; | |
| # start it properly | |
| DROPBOX_USE_LIBAPPINDICATOR=1 XDG_CURRENT_DESKTOP=Unity \ |