8 lines
139 B
Plaintext
8 lines
139 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
if (which mc &> /dev/null); then
|
||
|
if [ "$TERM" = "rxvt-unicode" ]; then
|
||
|
alias mc="TERM=rxvt-unicode-256color mc"
|
||
|
fi
|
||
|
fi
|