Execute X settings sequentially.
authorOleksandr Gavenko <gavenkoa@gmail.com>
Mon, 17 Aug 2015 19:22:25 +0300
changeset 748 ae1a14ee2b1f
parent 747 8acd115359ee
child 749 89208f64214c
Execute X settings sequentially.
.xinitrc
--- a/.xinitrc	Mon Aug 17 15:59:28 2015 +0300
+++ b/.xinitrc	Mon Aug 17 19:22:25 2015 +0300
@@ -15,10 +15,13 @@
 
 # Under Cygwin I prefer '-multiwindow' option, so it needn't to setup WM.
 if [[ -z $COMSPEC ]]; then
-  { setxkbmap us,ru,ua && kbdd; } &
-  if [[ -f ~/.xmodmaprc ]]; then
-    xmodmap ~/.xmodmaprc &
-  fi
+  {
+    setxkbmap us,ru,ua
+    kbdd
+    if [[ -f ~/.xmodmaprc ]]; then
+        xmodmap ~/.xmodmaprc &
+    fi
+  } &
   xsetroot -mod 2 2 -fg gray70 -bg gray60 &
   # To debug FvwmM4 add "-debug" after "FvwmM4".
   fvwm -cmd "Module FvwmM4 -m4-prefix -m4-prefix-defines $HOME/.fvwm/config" &