Dotfiles for my tiling window manager + terminal workflow.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

207 lines
6.4 KiB

7 years ago
6 years ago
5 years ago
7 years ago
5 years ago
  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. # Add an "alert" alias for long running commands. Use like so:
  78. # sleep 10; alert
  79. 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$//'\'')"'
  80. # enable programmable completion features (you don't need to enable
  81. # this, if it's already enabled in /etc/bash.bashrc and /etc/profile
  82. # sources /etc/bash.bashrc).
  83. if ! shopt -oq posix; then
  84. if [ -f /usr/share/bash-completion/bash_completion ]; then
  85. . /usr/share/bash-completion/bash_completion
  86. elif [ -f /etc/bash_completion ]; then
  87. . /etc/bash_completion
  88. fi
  89. fi
  90. if [ -x /usr/bin/mint-fortune ]; then
  91. /usr/bin/mint-fortune
  92. fi
  93. bind "TAB:menu-complete"
  94. bind "set show-all-if-ambiguous on"
  95. bind "set menu-complete-display-prefix on"
  96. DIR_BASH_IT="/home/kevin/.bash_it"
  97. if [ -d "/h/u3/c7/" ]; then
  98. DIR_BASH_IT="/h/u3/c7/05/mokkar/.bash_it"
  99. fi
  100. # Path to the bash it configuration
  101. export BASH_IT="$DIR_BASH_IT"
  102. # store current working dir after every command so can launch new
  103. # terminals from same dir (for i3)
  104. PROMPT_COMMAND='pwd > "${HOME}/.cwd"'
  105. [[ -f "${HOME}/.cwd" ]] && cd "$(< ${HOME}/.cwd)"
  106. # Lock and Load a custom theme file
  107. # location /.bash_it/themes/
  108. export BASH_IT_THEME='nwinkler'
  109. # (Advanced): Change this to the name of your remote repo if you
  110. # cloned bash-it with a remote other than origin such as `bash-it`.
  111. # export BASH_IT_REMOTE='bash-it'
  112. # Your place for hosting Git repos. I use this for private repos.
  113. export GIT_HOSTING='git@git.domain.com'
  114. # Don't check mail when opening terminal.
  115. unset MAILCHECK
  116. # Change this to your console based IRC client of choice.
  117. export IRC_CLIENT='irssi'
  118. # Set this to the command you use for todo.txt-cli
  119. export TODO="t"
  120. # Set this to false to turn off version control status checking within the prompt for all themes
  121. export SCM_CHECK=true
  122. # Set Xterm/screen/Tmux title with only a short hostname.
  123. # Uncomment this (or set SHORT_HOSTNAME to something else),
  124. # Will otherwise fall back on $HOSTNAME.
  125. export SHORT_HOSTNAME=$(hostname -s)
  126. # Set Xterm/screen/Tmux title with only a short username.
  127. # Uncomment this (or set SHORT_USER to something else),
  128. # Will otherwise fall back on $USER.
  129. export SHORT_USER=${USER:0:8}
  130. # Set Xterm/screen/Tmux title with shortened command and directory.
  131. # Uncomment this to set.
  132. #export SHORT_TERM_LINE=true
  133. # Set vcprompt executable path for scm advance info in prompt (demula theme)
  134. # https://github.com/djl/vcprompt
  135. #export VCPROMPT_EXECUTABLE=~/.vcprompt/bin/vcprompt
  136. # (Advanced): Uncomment this to make Bash-it reload itself automatically
  137. # after enabling or disabling aliases, plugins, and completions.
  138. # export BASH_IT_AUTOMATIC_RELOAD_AFTER_CONFIG_CHANGE=1
  139. # Load Bash It
  140. # source "$BASH_IT"/bash_it.sh
  141. # export JAVA_HOME=/home/kevin/usr/java/jdk1.8.0_151/
  142. # export PATH=$JAVA_HOME/bin:$PATH
  143. # export IDEA_VM_OPTION="/home/kevin/usr/idea-IC-172.4343.14/bin/idea64.vmoptions"
  144. # source /etc/environment
  145. export QSYS_ROOTDIR="/home/kevin/usr/altera_lite/16.0/quartus/sopc_builder/bin"
  146. # custom
  147. export EDITOR='vim'
  148. export VISUAL='vim'
  149. # Both PC/Laptop {{{
  150. if [ "$(whoami)" == "kevin" ]; then
  151. xset r rate 200 90
  152. export PATH="${PATH}:${HOME}/.local/bin/"
  153. (cat ~/.cache/wal/sequences &)
  154. fi
  155. # NZXT
  156. if [ "$(hostname)" == "NZXT" ];
  157. then
  158. xmodmap -e "clear Lock"
  159. xmodmap -e "keycode 22 = Caps_Lock"
  160. xmodmap -e "keycode 66 = BackSpace"
  161. else
  162. xrandr --dpi 150
  163. fi
  164. # Both PC/Laptop }}}
  165. [ -f ~/.fzf.bash ] && source ~/.fzf.bash
  166. source /home/kevin/aliases/.key_aliases