-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmintStuff
More file actions
22 lines (17 loc) · 804 Bytes
/
mintStuff
File metadata and controls
22 lines (17 loc) · 804 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/env bash
#allow use of word "open" to open file in window manager, nemo rather than typing nemo
alias open='nemo'
# alias ise='/opt/Xilinx/14.7/ISE_DS/ISE/bin/lin64/ise'
# alias proj='cd $HOME/Documents/490A/'
# alias godot='$HOME/Documents/gameDev/Godot_v2.1.3-stable_x11.64'
# alias tiled='$HOME/Documents/gameDev/Tiled-1.0.1-x86_64.AppImage'
# alias tf='source ~/pr0gramming/python/tensorflow/bin/activate'
alias vrc='vim ~/.dotFiles/bash_aliases'
# Jake Hansen's thing to display git branch in terminal
# display git branch while in repo
parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/'
}
export PS1="\u@\h \[\033[32m\]\w\[\033[33m\]\$(parse_git_branch)\[\033[00m\] $ "
#Pip packages are located here on Linux machine...
PATH=$PATH:.:~/.local/bin