made install.sh executable
added .Xdefaults
This commit is contained in:
parent
722c13a8fc
commit
104692129f
2 changed files with 49 additions and 2 deletions
44
.Xdefaults
Normal file
44
.Xdefaults
Normal file
|
@ -0,0 +1,44 @@
|
||||||
|
! General
|
||||||
|
urxvt*loginShell: true
|
||||||
|
urxvt*scrollBar: false
|
||||||
|
urxvt*secondaryScroll: true
|
||||||
|
urxvt*saveLines: 65535
|
||||||
|
urxvt*cursorBlink: false
|
||||||
|
urxvt*urgentOnBell: true
|
||||||
|
|
||||||
|
! Extensions
|
||||||
|
urxvt*perl-lib: /usr/lib/urxvt/perl/
|
||||||
|
urxvt*perl-ext-common: default,matcher,searchable-scrollback
|
||||||
|
urxvt*urlLauncher: chromium-browser
|
||||||
|
urxvt*matcher.button: 1
|
||||||
|
! - catch ugly URLs
|
||||||
|
!urxvt.cutchars: `()'*<>[]{|}"
|
||||||
|
|
||||||
|
! Appearance
|
||||||
|
! - use a bitmap font
|
||||||
|
urxvt*font: -xos4-terminus-medium-*-*-*-14-*-*-*-*-*-*-*
|
||||||
|
urxvt*boldFont: -xos4-terminux-bold-*-*-*-14-*-*-*-*-*-*-*
|
||||||
|
! - cursor
|
||||||
|
urxvt*cursorColor: #DCDCCC
|
||||||
|
! - pseudo transparency
|
||||||
|
urxvt*shading: 20
|
||||||
|
urxvt*transparent: true
|
||||||
|
! - color scheme
|
||||||
|
urxvt.background: #000000
|
||||||
|
urxvt.foreground: #EBEBFF
|
||||||
|
urxvt*color0: #000000 ! black
|
||||||
|
urxvt*color1: #E01010 ! red
|
||||||
|
urxvt*color2: #00AA00 ! green
|
||||||
|
urxvt*color3: #FFFF00 ! yellow
|
||||||
|
urxvt*color4: #112037 ! blue
|
||||||
|
urxvt*color5: #A020F0 ! purple
|
||||||
|
urxvt*color6: #5B5BC7 ! cyan
|
||||||
|
urxvt*color7: #FEFEFE ! white
|
||||||
|
urxvt*color8: #6A6A6A ! bright-black
|
||||||
|
urxvt*color9: #FF5555 ! bright-red
|
||||||
|
urxvt*color10: #90EE90 ! bright-green
|
||||||
|
urxvt*color11: #FFFF2F ! bright-yellow
|
||||||
|
urxvt*color12: #5B5BC7 ! bright-blue
|
||||||
|
urxvt*color13: #E628BA ! bright-purple
|
||||||
|
urxvt*color14: #7D7DFB ! bright-cyan
|
||||||
|
urxvt*color15: #FFFFFF ! bright-white
|
5
install.sh
Normal file → Executable file
5
install.sh
Normal file → Executable file
|
@ -1,9 +1,12 @@
|
||||||
INSTALL_BASEFILE=`readlink -f $0`
|
INSTALL_BASEFILE=`readlink -f $0`
|
||||||
INSTALL_BASEDIR=`dirname $INSTALL_BASEFILE`
|
INSTALL_BASEDIR=`dirname $INSTALL_BASEFILE`
|
||||||
|
|
||||||
|
# EMACS
|
||||||
ln -sf $INSTALL_BASEDIR/.emacs $HOME/.emacs
|
ln -sf $INSTALL_BASEDIR/.emacs $HOME/.emacs
|
||||||
|
|
||||||
if [ -d $HOME/.emacs.d ]; then
|
if [ -d $HOME/.emacs.d ]; then
|
||||||
rm -rf $HOME/.emacs.d
|
rm -rf $HOME/.emacs.d
|
||||||
fi
|
fi
|
||||||
ln -sf $INSTALL_BASEDIR/.emacs.d $HOME/
|
ln -sf $INSTALL_BASEDIR/.emacs.d $HOME/
|
||||||
|
|
||||||
|
# XDEFAULTS
|
||||||
|
ln -sf $INSTALL_BASEDIR/.Xdefaults $HOME/.Xdefaults
|
Loading…
Reference in a new issue