diff --git a/.Xdefaults b/.Xdefaults new file mode 100644 index 0000000..9bc9e1b --- /dev/null +++ b/.Xdefaults @@ -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 \ No newline at end of file diff --git a/install.sh b/install.sh old mode 100644 new mode 100755 index 030e7a0..bcbbf7b --- a/install.sh +++ b/install.sh @@ -1,9 +1,12 @@ INSTALL_BASEFILE=`readlink -f $0` INSTALL_BASEDIR=`dirname $INSTALL_BASEFILE` +# EMACS ln -sf $INSTALL_BASEDIR/.emacs $HOME/.emacs - if [ -d $HOME/.emacs.d ]; then rm -rf $HOME/.emacs.d fi -ln -sf $INSTALL_BASEDIR/.emacs.d $HOME/ \ No newline at end of file +ln -sf $INSTALL_BASEDIR/.emacs.d $HOME/ + +# XDEFAULTS +ln -sf $INSTALL_BASEDIR/.Xdefaults $HOME/.Xdefaults \ No newline at end of file