From 2a41e70e92b52154f06780d5251908abfb72fa36 Mon Sep 17 00:00:00 2001 From: Alvin Baptiste <11775386+abaptiste@users.noreply.github.com> Date: Thu, 11 Jun 2020 01:37:51 -0700 Subject: [PATCH] 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 --- aliases/general.aliases.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/aliases/general.aliases.sh b/aliases/general.aliases.sh index d3acc63..340fd7c 100644 --- a/aliases/general.aliases.sh +++ b/aliases/general.aliases.sh @@ -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