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
| " ----------------------------------------------------------------------------- | |
| " Name: SolarSooty | |
| " Description: SolarSooty Theme ported from the SolarSooty TextMate Theme | |
| " Author: borjovsky <r.borjovsky@gmail.com> | |
| " ----------------------------------------------------------------------------- | |
| set background=dark | |
| hi clear | |
| let g:colors_name='solarsooty' |
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: Diogo Alexsander Cavilha <diogocavilha@gmail.com> | |
| # | |
| # Debian postinstall. | |
| # sudo ./postinstall | |
| PS_USER="diogo" | |
| PS_HOME="/home/$PS_USER" | |
| PS_GIT_USER_NAME="Diogo Alexsander Cavilha" |
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 | |
| if [ ! "$USER" == "root" ]; then | |
| echo "You must be root" | |
| else | |
| # Altera o tema do mouse para Dark | |
| sed -ri 's/DMZ-White/DMZ-Black/g' /usr/share/icons/default/index.theme | |
| # Adiciona o repositório necessário para instalar o SublimeText 3 | |
| add-apt-repository ppa:webupd8team/sublime-text-3 |