diff --git a/dot-utshell_profile b/dot-utshell_profile deleted file mode 100644 index 4fdc9ef284e1e186de907a00335b58117913cefd..0000000000000000000000000000000000000000 --- a/dot-utshell_profile +++ /dev/null @@ -1,8 +0,0 @@ -# .utshell_profile - -# Get the aliases and functions -if [ -f ~/.bashrc ]; then - . ~/.bashrc -fi - -# User specific environment and startup programs diff --git a/dot-utshellrc b/dot-utshellrc deleted file mode 100644 index 3d865b0b4a070b17dd75515179dadd085237002f..0000000000000000000000000000000000000000 --- a/dot-utshellrc +++ /dev/null @@ -1,29 +0,0 @@ -# .utshellrc - -export HISTFILE=~/.utshell_history - -# Source global definitions -if [ -f /etc/bashrc ]; then - . /etc/bashrc -fi - -# User specific environment -if ! [[ "$PATH" =~ "$HOME/.local/bin:$HOME/bin:" ]] -then - PATH="$HOME/.local/bin:$HOME/bin:$PATH" -fi -export PATH - -# Uncomment the following line if you don't like systemctl's auto-paging feature: -# export SYSTEMD_PAGER= - -# User specific aliases and functions -if [ -d ~/.bashrc.d ]; then - for rc in ~/.bashrc.d/*; do - if [ -f "$rc" ]; then - . "$rc" - fi - done -fi - -unset rc