Don't know if this helps but here:
You can use xrandr to change the position of your screen, but it will be temporaly so you have to use the display app to make it persistant. I don't know where Fedora keeps those settings when not using the Xorg.conf.
- Get the monitor identifier:
xrandr --verbose | grep -i identifier
xrandr --output [identifier here] --rotate normal
--rotate rotation
Rotation can be one of 'normal', 'left', 'right' or 'inverted'.
This causes the output contents to be rotated in the specified
direction. 'right' specifies a clockwise rotation of the picture
and 'left' specifies a counter-clockwise rotation.
I can't test it because it says here "rotation not supported".
I'm being lazy because I don't want to edit the xorg.conf file right now sorry.
Another way that may work.
- Drop to the terminal.
CTRL+SHIFT+F2
- Log in and type:
init 3
This will disable the X-Server.
- Run the xconfig app:
/usr/bin/system-config-display
- edit the xorg.conf file
Code:
Section "Device"
Identifier "Device0"
Driver "nvidia"
VendorName "NVIDIA Corporation"
Option "RandRRotation" "boolean"
Option "Rotate" "string"
EndSection
Where boolean should be 0 and string should be off(or normal but with but enabling RandRRotation with 1).
http://http.download.nvidia.com/XFre...ppendix-d.html
- Restart X
init 5