Initial commit of configuration for core.
This commit is contained in:
parent
8e36b0cb0f
commit
65362a2ccb
48 changed files with 3138 additions and 0 deletions
14
root/.bash_logout
Normal file
14
root/.bash_logout
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
#!/bin/bash - not strictly necessary, but helps nano with syntax highlighting.
|
||||
|
||||
# Clear the screen/console on logout.
|
||||
if (( SHLVL == 1 )); then
|
||||
if [[ -x /usr/bin/clear_console ]]; then
|
||||
/usr/bin/clear_console -q
|
||||
elif [[ -x /usr/bin/clear ]]; then
|
||||
/usr/bin/clear
|
||||
elif [[ -x /usr/bin/tput ]]; then
|
||||
/usr/bin/tput clear
|
||||
else
|
||||
echo -ne "\e[2J"
|
||||
fi
|
||||
fi
|
||||
Loading…
Add table
Add a link
Reference in a new issue