Last active
November 7, 2016 23:34
-
-
Save mapledyne/ba6fd2162931cf2d73a1 to your computer and use it in GitHub Desktop.
A gradual list of bash aliases
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
export PATH=/Users/mknowles/Documents/BitBucket/belfry:/Users/mknowles/Dropbox\ \(Personal\)/Tech\ Tools/scripts:$PATH | |
export PYTHONPATH="${PYTHONPATH}:/Users/mknowles/git/skytap" | |
#export MAGICK_HOME="/usr/local/bin/ImageMagick-6.9.2" | |
#export PATH="$MAGICK_HOME/bin:$PATH" | |
#export DYLD_LIBRARY_PATH="$MAGICK_HOME/lib/" | |
# source ~/Git/liquidprompt/liquidprompt | |
# source /Users/mknowles/Dropbox\ \(Personal\)/Tech\ Tools/scripts/switch.sh | |
source ~/.skynet | |
alias a=atom | |
alias ..="cd .." | |
alias cd..="cd .." | |
alias g="cd ~/Git" | |
alias docs="cd ~/Documents" | |
alias dl="cd ~/Downloads" | |
alias ls="ls -GFh" | |
alias sl=ls | |
alias ll="ls -l" | |
alias la="ls -a" | |
alias lll="ls -la" | |
alias lal="ls -la" | |
alias ~="cd ~" | |
alias notify="terminal-notifier -message" | |
alias myip="curl http://ipecho.net/plain; echo" | |
alias cls=clear | |
alias enote="osascript /Users/mknowles/Dropbox\ \(Personal\)/Projects\ and\ art/Applescript/Evernote.scpt" | |
# Stuff to do when starting up for the day | |
function startup () | |
{ | |
brightness -d 0 .5 | |
brightness -d 1 .3 | |
enote | |
} | |
function close () | |
{ | |
osascript /Users/mknowles/Dropbox\ \(Personal\)/Projects\ and\ art/Applescript/Close\ All.scpt | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment