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=Dropbox-Tray-Elementary | |
| GenericName=File Synchronizer | |
| Comment=Sync your files across computers and to the web | |
| Exec=/usr/bin/start-dropbox-withtray.sh | |
| Terminal=false | |
| Type=Application | |
| Icon=dropbox | |
| Categories=Network;FileTransfer; | |
| StartupNotify=false |
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 | |
| echo "deleting previous installs... " | |
| sudo rm /usr/bin/start-dropbox-withtray.sh | |
| rm ~/.config/autostart/dropbox-fix-tray-elementary-freya-launcher.desktop | |
| clear | |
| # stop it if it's running | |
| dropbox stop &>/dev/null |
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
| cd /tmp && wget https://gist.githubusercontent.com/rhoconlinux/0a025d2aa037f38ef494/raw/89c7ca9bb498b751a1b8882267df8b4d0077aeeb/dropbox-tray-fixworker.sh -O dropbox-elementary-fix.sh && sh dropbox-elementary-fix.sh | |
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] | |
| Type=Action | |
| Tooltip=Open Folder As Root | |
| Name=Open Folder As Root | |
| Profiles=profile-zero; | |
| Icon=gtk-dialog-authentication | |
| [X-Action-Profile profile-zero] | |
| MimeTypes=inode/directory; | |
| Exec=/usr/bin/gksu /usr/bin/pcmanfm %u |
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 | |
| mkdir -p ~/.local/share/file-manager/actions | |
| cd ~/.local/share/file-manager/actions | |
| wget https://gist.githubusercontent.com/rhoconlinux/1e77cb04420b2ccd9893/raw/e79a3fda9f5dd14cad238dec711b2a3df330b969/open-as-root-pcmanfm.desktop -O root.desktop | |
| killall pcmanfm; | |
| pcmanfm & |
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
| cd /tmp/ && wget http://tny.im/O7T9S -O open-as-root-pcmanfm-installer.sh && sh open-as-root-pcmanfm-installer.sh |
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
| cd /tmp/ && wget https://gist.githubusercontent.com/rhoconlinux/48355a2ce318f118232e/raw/89e68324f6994b020e7bf48e1698b47a82111cef/ninja-apt-3.0.sh -O ninja-apt && sudo mv ninja-apt /usr/local/bin && sudo chmod +x /usr/local/bin/ninja-apt && cd && clear |
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] | |
| Version=1.0 | |
| Name=Android Rho VM | |
| GenericName=Android Virtual Machine | |
| Exec=rho-genymotion | |
| Terminal=false | |
| Icon=android_vm.png | |
| Type=Application | |
| Categories=Utility;Application |
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 ffmpeg | |
| Trusty: | |
| sudo add-apt-repository ppa:kirillshkrogalev/ffmpeg-next -y && sudo apt-get update && sudo apt-get install ffmpeg -y | |
| rm -Rf mp3/ ; rm *.mp3; for f in *.mp4; do ffmpeg -i "$f" "${f/%mp4/mp3}"; done && mkdir -p mp3/ && for f in *.mp3; do mv "$f" mp3/; done | |
| rm *.mp4 |
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 | |
| #http://ubuntuhandbook.org/index.php/2015/02/open-as-root-elementary-os-freya/ | |
| #http://webdarek.tumblr.com/post/69092764284/elementary-os-in-order-to-create-open-terminal | |
| cd /tmp/ | |
| sudo mkdir -p /usr/share/contractor/ | |
| wget https://gist.githubusercontent.com/rhoconlinux/477498d479252227db30/raw/554e8d7ff53e30af103d0596870b13cdcde1a637/open-terminal-here-pantheon.contract -O terminal.contract | |
| wget https://gist.githubusercontent.com/rhoconlinux/c29f7b99b7b1ece0f4bf/raw/a8e8c148ecb672b3ed0e9fca5bfcbae816e8d29b/open-as-root-pantheon.contract -O openroot.contract | |
| sudo mv *.contract /usr/share/contractor/ | |
| cd |