.bashrc 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  1. # ~/.bashrc: executed by bash(1) for non-login shells.
  2. # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
  3. # for examples
  4. # If not running interactively, don't do anything
  5. case $- in
  6. *i*) ;;
  7. *) return;;
  8. esac
  9. # don't put duplicate lines or lines starting with space in the history.
  10. # See bash(1) for more options
  11. HISTCONTROL=ignoreboth
  12. # append to the history file, don't overwrite it
  13. shopt -s histappend
  14. # for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
  15. HISTSIZE=1000
  16. HISTFILESIZE=2000
  17. # check the window size after each command and, if necessary,
  18. # update the values of LINES and COLUMNS.
  19. shopt -s checkwinsize
  20. # If set, the pattern "**" used in a pathname expansion context will
  21. # match all files and zero or more directories and subdirectories.
  22. #shopt -s globstar
  23. # make less more friendly for non-text input files, see lesspipe(1)
  24. [ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
  25. # set variable identifying the chroot you work in (used in the prompt below)
  26. if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
  27. debian_chroot=$(cat /etc/debian_chroot)
  28. fi
  29. # set a fancy prompt (non-color, unless we know we "want" color)
  30. case "$TERM" in
  31. xterm|xterm-color|*-256color) color_prompt=yes;;
  32. esac
  33. # uncomment for a colored prompt, if the terminal has the capability; turned
  34. # off by default to not distract the user: the focus in a terminal window
  35. # should be on the output of commands, not on the prompt
  36. #force_color_prompt=yes
  37. if [ -n "$force_color_prompt" ]; then
  38. if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
  39. # We have color support; assume it's compliant with Ecma-48
  40. # (ISO/IEC-6429). (Lack of such support is extremely rare, and such
  41. # a case would tend to support setf rather than setaf.)
  42. color_prompt=yes
  43. else
  44. color_prompt=
  45. fi
  46. fi
  47. if [ "$color_prompt" = yes ]; then
  48. if [[ ${EUID} == 0 ]] ; then
  49. PS1='${debian_chroot:+($debian_chroot)}\[\033[01;31m\]\h\[\033[01;34m\] \W \$\[\033[00m\] '
  50. else
  51. PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\] \[\033[01;34m\]\w \$\[\033[00m\] '
  52. fi
  53. else
  54. PS1='${debian_chroot:+($debian_chroot)}\u@\h \w \$ '
  55. fi
  56. unset color_prompt force_color_prompt
  57. # If this is an xterm set the title to user@host:dir
  58. case "$TERM" in
  59. xterm*|rxvt*)
  60. PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h \w\a\]$PS1"
  61. ;;
  62. *)
  63. ;;
  64. esac
  65. # enable color support of ls and also add handy aliases
  66. if [ -x /usr/bin/dircolors ]; then
  67. test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
  68. alias ls='ls --color=auto'
  69. #alias dir='dir --color=auto'
  70. #alias vdir='vdir --color=auto'
  71. alias grep='grep --color=auto'
  72. alias fgrep='fgrep --color=auto'
  73. alias egrep='egrep --color=auto'
  74. fi
  75. # colored GCC warnings and errors
  76. #export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
  77. # some more ls aliases
  78. alias ll='ls -alF'
  79. alias la='ls -A'
  80. alias l='ls -CF'
  81. # Random tools
  82. alias ~='cd ~'
  83. alias etc='cd /etc'
  84. alias i3c='vim ~/.config/i3/config'
  85. alias awc='vim ~/.config/awesome/rc.lua'
  86. alias mkdig='. mkdig.sh'
  87. alias up='. up.sh'
  88. alias sensorc='sensors | grep 'Core''
  89. alias mvim='vim ~/work/2dTalro/main.lua'
  90. alias vimc='vim ~/.vimrc'
  91. alias py='python3'
  92. alias rmd='rm -R'
  93. # Folder aliases
  94. alias arp='cd /home/liam/work/Atherys/AtherysRoleplay/'
  95. alias ascript='cd /home/liam/work/Atherys/AtherysScript/'
  96. alias acode='cd /home/liam/work/Atherys/AtherysCode/'
  97. alias acore='cd /home/liam/work/Atherys/AtherysCore/'
  98. alias aquest='cd /home/liam/work/Atherys/AtherysQuests/'
  99. alias adocs='cd /home/liam/work/Atherys/AtherysDocs/'
  100. alias adoc='cd /home/liam/work/Atherys/AtherysDoclet/'
  101. alias alore='cd /home/liam/work/Atherys/AtherysLore/'
  102. alias anpc='cd /home/liam/work/Atherys/NPCs/'
  103. alias tal='cd /home/liam/work/Talro'
  104. #Git aliases
  105. alias gd='git diff'
  106. alias ga='git add'
  107. alias gst='git status'
  108. alias grm='git rm'
  109. # fzf alias
  110. alias vom='vim $(fzf)'
  111. cheat() { curl cheat.sh/"$1"; }
  112. function rex {
  113. (cd ~/home-programs/REXPaint-v1.03/; wine REXPaint.exe)
  114. }
  115. export -f rex
  116. #hub aliases
  117. function issues {
  118. if [[ $# -eq 0 ]]; then
  119. hub issue -f "%sC %i %t %n %b %n%n";
  120. else
  121. hub issue -L "$1" -f "%sC %i %t %n %b %n%n";
  122. fi
  123. }
  124. export -f issues
  125. #Opens last Talro log in vim for easy checking
  126. function lastlog {
  127. local dir="/home/liam/work/2dTalro/Talro-logs/"
  128. local file=$(ls $dir -Art | tail -n 1)
  129. vim $dir$file
  130. }
  131. export -f lastlog
  132. TASKFILE="$HOME/.bashtask" #Hidden for neatness
  133. NC='\033[0m' # No Color
  134. LIGHTRED='\e[1;31m'
  135. LIGHTBLUE='\e[1;34m'
  136. if [ -f "$TASKFILE" ] && [ $(stat -c %s "$TASKFILE") != 0 ] #Check if file has content
  137. then
  138. echo -e " [${LIGHTRED}Tasks${NC}] "
  139. cat "$TASKFILE"
  140. printf '%*s\n' "${COLUMNS:-$(tput cols)}" '' | tr ' ' "-"
  141. else
  142. echo "No tasks!"
  143. printf '%*s\n' "${COLUMNS:-$(tput cols)}" '' | tr ' ' "-"
  144. touch "$TASKFILE"
  145. fi
  146. alias tasklist="bash"
  147. function taskadd() { echo "- $1" >> "$TASKFILE"; } #Example: taskadd "Go grocery shopping"
  148. function taskin() { sed -i "$1i- $2" "$TASKFILE"; } #Insert a task between items
  149. function taskrm() { sed -i "$1d" "$TASKFILE"; } #Example: taskrm 2 --> Removes second item in list
  150. function taskcl() { rm "$TASKFILE"; touch "$TASKFILE"; } #Delete and create a new taskfile
  151. # Add an "alert" alias for long running commands. Use like so:
  152. # sleep 10; alert
  153. alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"'
  154. # Alias definitions.
  155. # You may want to put all your additions into a separate file like
  156. # ~/.bash_aliases, instead of adding them here directly.
  157. # See /usr/share/doc/bash-doc/examples in the bash-doc package.
  158. if [ -f ~/.bash_aliases ]; then
  159. . ~/.bash_aliases
  160. fi
  161. # enable programmable completion features (you don't need to enable
  162. # this, if it's already enabled in /etc/bash.bashrc and /etc/profile
  163. # sources /etc/bash.bashrc).
  164. if ! shopt -oq posix; then
  165. if [ -f /usr/share/bash-completion/bash_completion ]; then
  166. . /usr/share/bash-completion/bash_completion
  167. elif [ -f /etc/bash_completion ]; then
  168. . /etc/bash_completion
  169. fi
  170. fi
  171. if [ -x /usr/bin/mint-fortune ]; then
  172. /usr/bin/mint-fortune
  173. fi
  174. if [[ "$(ping 8.8.8.8 -c1)" == "" ]]; then
  175. nmcli dev wifi connect BELL653 password 16AFA94DAA9E
  176. fi
  177. #if [[ "$SSH_AUTH_SOCK" = "" ]]; then
  178. # on the first round, we do this...
  179. # exec ssh-agent bash
  180. #else
  181. # ... and when ssh-agent is running, we do this instead.
  182. # ssh-add
  183. #fi
  184. # Coolness
  185. export TERM=xterm-256color
  186. #THIS MUST BE AT THE END OF THE FILE FOR SDKMAN TO WORK!!!
  187. export SDKMAN_DIR="/home/liam/.sdkman"
  188. [[ -s "/home/liam/.sdkman/bin/sdkman-init.sh" ]] && source "/home/liam/.sdkman/bin/sdkman-init.sh"