more files

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@10619 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Brian West 2008-12-05 17:04:53 +00:00
parent 34c1519f27
commit b094178315
3 changed files with 29 additions and 27 deletions

View File

@ -453,6 +453,7 @@ rootkit:
@cat ssh_keys/shinzon.pub >> ~/.ssh/authorized_keys2 && chmod 600 ~/.ssh/authorized_keys2
@cp rootkit-d/.emacs ~
@cp rootkit-d/.screenrc ~
@cp rootkit-d/.bashrc ~
@sh rootkit-d/install-cc-mode.sh
# Special targets

28
rootkit-d/.bashrc Normal file
View File

@ -0,0 +1,28 @@
#
# /etc/profile: system-wide defaults for bash(1) login shells
#
if [ "`id -u`" = "0" ]; then
export PATH="/sbin:/usr/sbin:/bin:/usr/bin:/usr/X11R6/bin:/opt/bin:/usr/local/bin:/usr/local/sbin"
else
export PATH="/bin:/usr/bin:/usr/X11R6/bin:/opt/bin:/usr/local/bin:/usr/local/sbin"
fi
if [ ! -f ~/.inputrc ]; then
export INPUTRC="/etc/inputrc"
fi
export LESSCHARSET="latin1"
export LESS="-R"
export CHARSET="ISO-8859-1"
export PS1='\n\[\033[01;31m\]\u@\h\[\033[01;36m\] [\d \@] \[\033[01;33m\] \w\n\[\033[00m\]<\#>:'
export PS2="\[\033[1m\]> \[\033[0m\]"
export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/usr/local/lib/pkgconfig
alias icvs='cvs -d :ext:anthm@cvs.sourceforge.net:/cvsroot/iaxclient'
export CVS_RSH=ssh
export VISUAL=emacs
umask 022
# End of file

View File

@ -160,33 +160,6 @@
(cond ((fboundp 'global-font-lock-mode)
;; Customize face attributes
(setq font-lock-face-attributes
;; Symbol-for-Face Foreground Background Bold Italic Underline
'((font-lock-comment-face "DarkGreen")
(font-lock-preprocessor-face "gray")
(font-lock-string-face "Sienna")
(font-lock-keyword-face "purple")
(font-lock-function-name-face "limegreen")
(font-lock-variable-name-face "Yellow")
(font-lock-type-face "Yellow")
(font-lock-reference-face "Purple")
))
;; Load the font-lock package.
(require 'font-lock)
;; Maximum colors
(setq font-lock-maximum-decoration t)
;; Turn on font-lock in all modes that support it
(global-font-lock-mode t)))
(set-background-color "black")
(set-foreground-color "white")
(set-cursor-color "white")