aliases/general: Add fix_term alias to reset the terminal (#153)

- This alias resets the terminal in cases where `stty sane` and
  reset may not work.

Authored-by: Alvin <alvin@thedarkside.local>
This commit is contained in:
Alvin Baptiste
2020-06-11 01:37:51 -07:00
committed by GitHub
parent fdd28c810a
commit 2a41e70e92

View File

@@ -26,5 +26,6 @@ alias c='clear' # c: Clear terminal displ
alias path='echo -e ${PATH//:/\\n}' # path: Echo all executable Paths
alias show_options='shopt' # Show_options: display bash options settings
alias fix_stty='stty sane' # fix_stty: Restore terminal settings when screwed up
alias fix_term='echo -e "\033c"' # fix_term: Reset the conosle. Similar to the reset command
alias cic='set completion-ignore-case On' # cic: Make tab-completion case-insensitive
alias src='source ~/.bashrc' # src: Reload .bashrc file