I have a dual head setup on Kubuntu 9.04 (which means I am using 1.6) and I can't seem to type on
the second head. I have KDE running on 1 screen, but am not running a
window manager on the other screen - Only a virtualbox VM. I CAN move
my mouse between screens and manage windows using it, however, I cannot
get keyboard input to switch to this screen. It just keeps typing in
the last selected window on display :0.0. Is I am running the following
script at startup:<br>
<br>jshewey@jimmylinux:~$ cat /home/jshewey/.kde/Autostart/<div id=":zj" class="ii gt">compiz <br>#!/bin/bash<br><br>compiz.real --replace --ignore-desktop-hints --only-current-screen &<br>DISPLAY=":0.1" VBoxManage startvm 'Windows XP' -type gui<br>

<br>I did however try disabling compiz on both monitors to make sure
this wasn't influencing the situation and found that I still could not
type in the VM. I also tried starting an xterm window on display :0.1
using the command DISPLAY=":0.1" xterm and still cound not type on that
monitor, so the issue is not specific to the VM. <br>
<br>This is my current xorg.conf file:<br>
<br># nvidia-settings: X configuration file generated by nvidia-settings<br># nvidia-settings:  version 1.0  (buildd@palmer)  Sun Feb  1 20:21:04 UTC 2009<br><br># xorg.conf (X.Org X Window System server configuration file)<br>

#<br># This file was generated by dexconf, the Debian X Configuration tool, using<br># values from the debconf database.<br>#<br># Edit this file with caution, and see the xorg.conf manual page.<br># (Type "man xorg.conf" at the shell prompt.)<br>

#<br># This file is automatically updated on xserver-xorg package upgrades *only*<br># if it has not been modified since the last upgrade of the xserver-xorg<br># package.<br>#<br># Note that some configuration settings that could be done previously<br>

# in this file, now are automatically configured by the server and settings<br># here are ignored.<br>#<br># If you have edited this file but would like it to be automatically updated<br># again, run the following command:<br>

#   sudo dpkg-reconfigure -phigh xserver-xorg<br><br>Section "ServerLayout"<br>    Identifier     "Default Layout"<br>    Screen      0  "Screen0" 0 1024<br>    Screen      1  "Screen1" Above "Screen0"<br>

    InputDevice    "Keyboard0" "CoreKeyboard"<br>    InputDevice    "Mouse0" "CorePointer"<br>EndSection<br><br>Section "Module"<br>    Load           "dbe"<br>
    Load           "extmod"<br>
#    Load           "type1"<br>#    Load           "freetype"<br>    Load           "glx"<br>EndSection<br><br>Section "ServerFlags"<br>    Option         "Xinerama" "0"<br>

EndSection<br><br>Section "InputDevice"<br>    # generated from default<br>    Identifier     "Keyboard0"<br>    Driver         "kbd"<br>EndSection<br><br>Section "InputDevice"<br>
    # generated from default<br>
    Identifier     "Mouse0"<br>    Driver         "mouse"<br>    Option         "Protocol" "auto"<br>    Option         "Device" "/dev/psaux"<br>    Option         "Emulate3Buttons" "no"<br>

    Option         "ZAxisMapping" "4 5"<br>EndSection<br><br>Section "Monitor"<br>    Identifier     "Configured Monitor"<br>EndSection<br><br>Section "Monitor"<br>    Identifier     "Monitor0"<br>

    VendorName     "Unknown"<br><br>Thanks for your suggestions</div>