This file contains 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 | |
# This tiny script outputs Github commit messages into the speech bubble of Tux ascii art | |
# The commit messages are curl'd from whatthecommit.com | |
# You need the cowsay application | |
# Check with: `which cowsay` | |
# Install with: `sudo apt-get install cowsay` | |
MSG=$(curl -s whatthecommit.com/index.txt) |
This file contains 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
alias c='clear' | |
alias f='thunar' #or applicable file manager | |
alias tlist='tmux list-sessions' | |
alias sbrc='source ~/.bashrc' | |
alias s='sudo' |
This file contains 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
# CCH - Bash Profile Settings # | |
# user@hostname:where<ex.~>$ | |
export PS1="\e[1;33m\u@\h:\e[1;36m\w\e[0m\$ " | |
# colors | |
export CLICOLOR=1 | |
export LSCOLORS=GxFxCxDxBxegedabagaced | |
alias c='clear' |
NewerOlder