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
| #!/usr/bin/env ruby | |
| require 'thor' | |
| require 'readline' | |
| begin | |
| require 'tracker_api' | |
| rescue LoadError | |
| puts 'Please install the tracker_api gem.' | |
| puts 'Exiting ...' |
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
| # ~/.bash_logout | |
| # when leaving the console clear the screen to increase privacy | |
| if [ "$SHLVL" = 1 ]; then | |
| [ -x /usr/bin/clear_console ] && /usr/bin/clear_console -q | |
| fi |
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
| # ~/.bash_login | |
| export PS1="\e[36;1m\]>\e[93;1m\] changeme \e[36;1m\]\W\e[0m\] " | |
| alias d='docker' | |
| alias dco='docker-compose' | |
| alias da="direnv allow" | |
| alias ..='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
| # ~/.bashrc | |
| # If not running interactively, don't do anything | |
| case $- in | |
| *i*) ;; | |
| *) return;; | |
| esac | |
| # don't put duplicate lines or lines starting with space in the history. | |
| HISTCONTROL=ignoreboth |
OlderNewer