├── .gitignore ├── LICENSE ├── README.md ├── __deploy.sh ├── bash_aliases.sh ├── bash_logout.sh ├── bash_profile.sh └── bashrc.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | *.iml 3 | 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slomkowski/bash-full-of-colors/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slomkowski/bash-full-of-colors/HEAD/README.md -------------------------------------------------------------------------------- /__deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slomkowski/bash-full-of-colors/HEAD/__deploy.sh -------------------------------------------------------------------------------- /bash_aliases.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slomkowski/bash-full-of-colors/HEAD/bash_aliases.sh -------------------------------------------------------------------------------- /bash_logout.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # clean terminal 4 | reset 5 | -------------------------------------------------------------------------------- /bash_profile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slomkowski/bash-full-of-colors/HEAD/bash_profile.sh -------------------------------------------------------------------------------- /bashrc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slomkowski/bash-full-of-colors/HEAD/bashrc.sh --------------------------------------------------------------------------------