merged
authorOleksandr Gavenko <gavenkoa@gmail.com>
Wed, 06 Jun 2012 23:15:54 +0300
changeset 453 0625f9c65913
parent 451 917d19d3a081 (diff)
parent 452 f5363ac2e581 (current diff)
child 454 0999a1f85875
merged
.config/mc/mc.ext
--- a/.bashrc	Thu May 31 23:50:19 2012 +0300
+++ b/.bashrc	Wed Jun 06 23:15:54 2012 +0300
@@ -144,3 +144,11 @@
   done
 fi
 
+################################################################
+# Load custom settings (user editable).
+# Placed to the end to allow override skel settings.
+
+if [[ -f ~/.bash_custom ]]; then
+  . ~/.bash_custom
+fi
+
--- a/.config/mc/mc.ext	Thu May 31 23:50:19 2012 +0300
+++ b/.config/mc/mc.ext	Wed Jun 06 23:15:54 2012 +0300
@@ -187,6 +187,9 @@
     Open=see %f 2>/dev/null &
     View=%view{ascii} catdoc -w %f
 
+regex/\.[hH][tT][mM][lL]?$
+    Open=see %f 2>/dev/null &
+
 regex/\.([Dd][oO][cCtT]|[Ww][rR][iI])$
     Include=msword
 type/^Microsoft\ Word
--- a/.fvwm/config	Thu May 31 23:50:19 2012 +0300
+++ b/.fvwm/config	Wed Jun 06 23:15:54 2012 +0300
@@ -295,12 +295,14 @@
 # To add own menu items create proper ~/.menu/app-name file and run update-menu.
 # About this you can rean in /usr/share/doc/menu/menu.txt.gz.
 Read /etc/X11/fvwm/menudefs.hook quiet
+# Read $[FVWM_USERDIR]/menudefs.hook quiet
 
 AddToMenu MenuMy Media Title
++ HTop            Exec  exec xterm -name htop -e sudo htop
 + Emacs           Exec  exec emacs
-+ HTop            Exec  exec xterm -name htop -e sudo htop
 + Firefox         Exec  exec firefox
 + VLC             Exec  exec vlc
++ Skype           Exec  exec skype
 + Goldendict      Exec  exec goldendict
 + xkill           Exec  exec xkill
 + "Peoplenet"     Exec  exec xterm -e /usr/bin/pon
--- a/.xinitrc	Thu May 31 23:50:19 2012 +0300
+++ b/.xinitrc	Wed Jun 06 23:15:54 2012 +0300
@@ -3,6 +3,10 @@
 if [[ -f ~/.bash_path ]]; then
   . ~/.bash_path
 fi
+# Load custom settings (user editable).
+if [[ -f ~/.bash_custom ]]; then
+  . ~/.bash_custom
+fi
 
 xrdb -merge ~/.Xdefaults
 # xrdb -load ~/.Xdefaults
--- a/Makefile	Thu May 31 23:50:19 2012 +0300
+++ b/Makefile	Wed Jun 06 23:15:54 2012 +0300
@@ -93,6 +93,8 @@
 	chmod a+x ~/.xinitrc ~/.xserverrc
 	rm -f ~/.xsession
 	ln -s ~/.xinitrc ~/.xsession
+	rm -f ~/.bash_profile
+	ln -s ~/.bashrc ~/.bash_profile
 	v=`mc --version | sed 's|.*\([0-9]\+\.[0-9]\+\.[0-9]\+\)$$|\1|;q'`; \
 	vmajor=$${v%%.*}; \
 	vminor=$${v#*.}; \