X11 相关的配置

  • 文件位置

    一般的都在/etc/X11/xorg.conf.d目录下面有写配置文件比如我自己就这么写的1.conf ,2.conf 命名都可以随便,启动的时候都会从这里进行读取配置。

  • 代码

下面是我的一个配置文件代码如下:

Section "Screen"    
Identifier "Screen0" 
Device "Videocard0" 
Monitor "Monitor0" 
DefaultDepth 24
SubSection "Display"
Depth 24 
Modes "1600x900" "800x600" "640x480" "1280x1024" 
EndSubSection
EndSection
  • 解释

    一般的这个文件由数个Section/EndSection的区块组成,而每个区块的格式如下:
    **Section “Section名称”
    选项名称 “选

你可能感兴趣的:(嵌入式入门,linux,图像处理入门,图形图像处理)