.xinitrc
author Oleksandr Gavenko <gavenkoa@gmail.com>
Wed, 15 Feb 2012 00:50:59 +0200
changeset 306 d669711ea6b1
parent 289 914736b32f8a
child 310 3f53690ce833
permissions -rw-r--r--
Cleanup aliases.

#!/bin/bash

if [[ -f ~/.bash_path ]]; then
  . ~/.bash_path
fi

xrdb -merge ~/.Xdefaults
# xrdb -load ~/.Xdefaults

# Set lang switch.
# Because of bug in xorg invoking setxkbmap cause disable repeat char when key pressed.
# setxkbmap -rules xorg -model pc104 -layout "us,ru" -option "grp:rwin_toggle,grp_led:scroll" &

# Root window parameter.
# Color names check from /etc/X11/rgb.txt or enter in hex: #aabbcc.
# xsetroot -gray -fg red -bg white
# xsetroot -bitmap dir/file.bitmap -fg red -bg white
# xsetroot -mod 3 3 -fg red -bg white
xsetroot -gray

# Don't use fvwm under Cygwin.
if [[ -z $COMSPEC ]]; then
  fvwm &
fi

# Last command.
exec xterm -e bash -i