mirror of
https://github.com/termux/termux-packages.git
synced 2024-11-11 13:09:18 +00:00
50 lines
914 B
Xorg
50 lines
914 B
Xorg
# Just some default xorg.conf
|
|
|
|
Section "ServerFlags"
|
|
Option "DontVTSwitch" "true"
|
|
Option "AllowMouseOpenFail" "true"
|
|
Option "PciForceNone" "true"
|
|
Option "AutoEnableDevices" "false"
|
|
Option "AutoAddDevices" "false"
|
|
EndSection
|
|
|
|
Section "InputDevice"
|
|
Identifier "NoMouse"
|
|
Option "CorePointer" "true"
|
|
Driver "void"
|
|
EndSection
|
|
|
|
Section "InputDevice"
|
|
Identifier "NoKeyboard"
|
|
Option "CoreKeyboard" "true"
|
|
Driver "void"
|
|
EndSection
|
|
|
|
Section "Device"
|
|
Identifier "Videocard0"
|
|
Driver "dummy"
|
|
VideoRam 4096000
|
|
EndSection
|
|
|
|
Section "Monitor"
|
|
Identifier "Monitor0"
|
|
EndSection
|
|
|
|
Section "Screen"
|
|
Identifier "Screen0"
|
|
Device "Videocard0"
|
|
Monitor "Monitor0"
|
|
DefaultDepth 24
|
|
SubSectionSub "Display"
|
|
Viewport 0 0
|
|
Depth 24
|
|
EndSubSection
|
|
EndSection
|
|
|
|
Section "ServerLayout"
|
|
Identifier "dummy_layout"
|
|
Screen "screen0"
|
|
InputDevice "NoMouse"
|
|
InputDevice "NoKeyboard"
|
|
EndSection
|