Radix cross Linux

The main Radix cross Linux repository contains the build scripts of packages, which have the most complete and common functionality for desktop machines

452 Commits   2 Branches   1 Tag
#!/bin/sh
#
# .bashrc - is executed for interactive non-login shells,
#           while .bash_profile is executed for login shells.
#

if [ "$TERM" = "xterm" ] ; then
  alias mc='TERM=xterm-256color mc -S rcl256'
  alias mcedit='TERM=xterm-256color mcedit -S rcl256'
  alias mcview='TERM=xterm-256color mcview -S rcl256'
elif [ "$TERM" = "xterm-256color" ] ; then
  alias mc='mc -S rcl256'
  alias mcedit='mcedit -S rcl256'
  alias mcview='mcview -S rcl256'
fi