1
0
mirror of git://projects.qi-hardware.com/nanobits.git synced 2024-11-23 20:11:54 +02:00
nanobits/tweaks/etc/profile
Freemor ac84168269 ben-time-set.sh finally close to done.. needs real world
Added Tweaks dir
  - modified /etc/profile
  - New /etc/banner with ben name and Qi logo
2011-11-04 22:15:34 -03:00

19 lines
583 B
Bash

#!/bin/sh
setfont /usr/share/kbd/consolefonts/kernel-6x11-font
[ -f /etc/banner ] && cat /etc/banner
export PATH=/bin:/sbin:/usr/bin:/usr/sbin
export HOME=$(grep -e "^${USER:-root}:" /etc/passwd | cut -d ":" -f 6)
export HOME=${HOME:-/root}
export PS1='\u@\h:\w\$ '
[ -x /bin/more ] || alias more=less
[ -x /usr/bin/vim ] && alias vi=vim || alias vim=vi
[ -z "$KSH_VERSION" -o \! -s /etc/mkshrc ] || . /etc/mkshrc
[ -x /usr/bin/arp ] || arp() { cat /proc/net/arp; }
[ -z /bin/ldd ] || ldd() { LD_TRACE_LOADED_OBJECTS=1 $*; }
setfont /usr/share/kbd/consolefonts/kernel-6x11-font