Tags: xorg

Sort by: Date / Title /

  1. 2 years ago by reven
    Section "Monitor"
           Option "DPMS"
           Identifier "Samsung205BW"
           VendorName "Samsung"
           ModelName "SyncMaster 205BW"
           HorizSync 30 - 81
           VertRefresh 56 - 75
           Modeline "1680x1050" 146.25 1680 1784 1960 2240 1050 1053 1059 1089
    EndSection
    Paste this in your website: <script type="text/javascript" src="http://www.posteet.com/embed/780"></script>
  2. 2 years ago by enoch
    Pas encore testé
    La MX1000 est une très bonne souris, bien reconnue sous Linux mais après quelques réglages tout de même!! 
    Cette astuce est valable pour toutes les distributions Linux à partir du moment où vous utilisez Xorg.
    
    Tout d'abord rendez-vous dans le /etc/X11/xorg.conf. Trouvez la catégorie :
    
    Section "InputDevice"
                    Identifier "Configured Mouse"
                    Driver "mouse"
    
    
    Il faut remplacer la section en gardant la ligne Identifier, Driver et les balises de début et de fin de section par :
    
    Option "ButtonNumber" "12"
    Option "Buttons" "12"
    Option "Device" "/dev/input/mice"
    Option "Protocol" "ExplorerPS/2"
    Option "Vendor" "Sysp"
    Option "Resolution" "800"
    Option "ZAxisMapping" "11 12"
    
    
    Enregistrez les modifications apportées. 
    Vous pouvez déjà voir si cela va marcher, relancez votre serveur X par un ctrl + alt + backspace. 
    En console lancez la commande suivante :
    
    xmodmap -e "pointer = 1 2 3 6 7 8 9 10 11 12 4 5"
    
    Les boutons ainsi que la souris devraient fonctionner. Si c'est le cas, nous allons automatiser la configuration.
    Créez un nouveau fichier texte .xmodmap dans /home/votre_utilisateur (attention le "." avant le xmodmap est très important). 
    Editez le fichier vide et ajoutez y :
    
    ! Set up the MX1000 mouse buttons
    pointer = 1 2 3 6 7 8 9 10 11 12 4 5
    
    Cette action devrait permettre à la configuration de la souris de se lancer à chaque ouverture de session.
    Voilà votre MX1000 est désormais complètement fonctionnelle sous Linux, enjoy ^^
    Paste this in your website: <script type="text/javascript" src="http://www.posteet.com/embed/663"></script>
  3. 2 years ago by neorom
    importance des sections "Monitor" pour la fréquence de l'écran et aussi de "Input Device" pour le touchpad
    1. # /etc/X11/xorg.conf (xorg X Window System server configuration file)
    2. #
    3. # This file was generated by dexconf, the Debian X Configuration tool, using
    4. # values from the debconf database.
    5. #
    6. # Edit this file with caution, and see the /etc/X11/xorg.conf manual page.
    7. # (Type "man /etc/X11/xorg.conf" at the shell prompt.)
    8. #
    9. # This file is automatically updated on xserver-xorg package upgrades *only*
    10. # if it has not been modified since the last upgrade of the xserver-xorg
    11. # package.
    12. #
    13. # If you have edited this file but would like it to be automatically updated
    14. # again, run the following command:
    15. #   sudo dpkg-reconfigure -phigh xserver-xorg
    16.  
    17. Section "Files"
    18.         FontPath        "/usr/share/fonts/X11/misc"
    19.         FontPath        "/usr/X11R6/lib/X11/fonts/misc"
    20.         FontPath        "/usr/share/fonts/X11/cyrillic"
    21.         FontPath        "/usr/X11R6/lib/X11/fonts/cyrillic"
    22.         FontPath        "/usr/share/fonts/X11/100dpi/:unscaled"
    23.         FontPath        "/usr/X11R6/lib/X11/fonts/100dpi/:unscaled"
    24.         FontPath        "/usr/share/fonts/X11/75dpi/:unscaled"
    25.         FontPath        "/usr/X11R6/lib/X11/fonts/75dpi/:unscaled"
    26.         FontPath        "/usr/share/fonts/X11/Type1"
    27.         FontPath        "/usr/X11R6/lib/X11/fonts/Type1"
    28.         FontPath        "/usr/share/fonts/X11/100dpi"
    29.         FontPath        "/usr/X11R6/lib/X11/fonts/100dpi"
    30.         FontPath        "/usr/share/fonts/X11/75dpi"
    31.         FontPath        "/usr/X11R6/lib/X11/fonts/75dpi"
    32.         # path to defoma fonts
    33.         FontPath        "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
    34. EndSection
    35.  
    36. Section "Module"
    37.         Load    "bitmap"
    38.         Load    "ddc"
    39.         Load    "extmod"
    40.         Load    "freetype"
    41.         Load    "glx"
    42.         Load    "vbe"
    43. EndSection
    44.  
    45. Section "InputDevice"
    46.         Identifier      "Generic Keyboard"
    47.         Driver    "kbd"
    48.         Option    "CoreKeyboard"
    49.         Option    "XkbRules"        "xorg"
    50.         Option    "XkbModel"        "macintosh"
    51.         Option    "XkbLayout"       "fr"
    52. EndSection
    53.  
    54. Section "InputDevice"
    55.         Identifier      "Configured Mouse"
    56.         Driver    "mouse"
    57.         Option    "CorePointer"
    58.         Option    "Device"    "/dev/input/mice"
    59.         Option    "Protocol"                "ImPS/2"
    60. EndSection
    61.  
    62. #Section "InputDevice"
    63. #       Identifier     "Synaptics Touchpad"
    64. #       Driver  "synaptics"
    65. #       Option  "SendCoreEvents" "true"
    66. #       Option  "Device"  "/dev/psaux"
    67. #       Option  "Protocol"              "auto-dev"
    68. #       Option  "HorizScrollDelta"       "0"
    69. #EndSection
    70.  
    71. Section "InputDevice"
    72.         Identifier      "Synaptics Touchpad"
    73.         Driver          "synaptics"
    74.         Option          "SendCoreEvents"        "true"
    75.         Option          "Device"                "/dev/input/atp"
    76. #        Option          "Protocol"              "event"
    77.         Option    "LeftEdge"                "60"
    78.         Option          "Protocol"              "ExplorerPS/2"
    79.         Option    "LeftEdge"                "60"
    80.         Option    "RightEdge"              "900"
    81.         Option    "TopEdge"  "60"
    82.         Option    "BottomEdge"            "511"
    83.         Option    "MinSpeed"                "0.5"
    84.         Option    "MaxSpeed"                "1"
    85.         Option    "AccelFactor"          "0.07"
    86.         Option    "FingerLow"              "10"
    87.         Option    "FingerHigh"            "15"
    88.         Option    "MaxTapTime"            "150"
    89.         Option    "MaxTapMove"            "100"
    90.         Option    "MaxDoubleTapTime"        "180"
    91.         Option    "HorizScrollDelta"        "0"
    92.         Option    "VertScrollDelta" "30"
    93.         Option    "SHMConfig"              "true"
    94.         Option    "RTCornerButton"  "3"
    95.         Option    "LTCornerButton"  "2"
    96.         Option    "VertTwoFingerScroll"     "true"
    97.         Option    "TapButton2"            "3"
    98.         Option    "TapButton3"            "2"
    99.  
    100. EndSection
    101.  
    102.  
    103. Section "Device"
    104.         Identifier      "nVidia Corporation NV34M [GeForce FX Go5200]"
    105.         Driver    "nv"
    106.         BusID      "PCI:0:16:0"
    107.         VideoRam        65536
    108. EndSection
    109.  
    110. Section "Monitor"
    111.         Identifier      "Generic Monitor"
    112.         Option    "DPMS"
    113.         HorizSync       30-51
    114.         VertRefresh     50-60
    115. EndSection
    116.  
    117. Section "Screen"
    118.         Identifier      "Default Screen"
    119.         Device    "nVidia Corporation NV34M [GeForce FX Go5200]"
    120.         Monitor  "Generic Monitor"
    121.         DefaultDepth    24
    122.         SubSection "Display"
    123.                 Depth      1
    124.                 Modes      "1024x768" "800x600" "640x480"
    125.         EndSubSection
    126.         SubSection "Display"
    127.                 Depth      4
    128.                 Modes      "1024x768" "800x600" "640x480"
    129.         EndSubSection
    130.         SubSection "Display"
    131.                 Depth      8
    132.                 Modes      "1024x768" "800x600" "640x480"
    133.         EndSubSection
    134.         SubSection "Display"
    135.                 Depth      15
    136.                 Modes      "1024x768" "800x600" "640x480"
    137.         EndSubSection
    138.         SubSection "Display"
    139.                 Depth      16
    140.                 Modes      "1024x768" "800x600" "640x480"
    141.         EndSubSection
    142.         SubSection "Display"
    143.                 Depth      24
    144.                 Modes      "1024x768" "800x600" "640x480"
    145.         EndSubSection
    146. EndSection
    147.  
    148. Section "ServerLayout"
    149.         Identifier      "Default Layout"
    150.         Screen    "Default Screen"
    151.         InputDevice     "Generic Keyboard"
    152.         InputDevice     "Configured Mouse"
    153.         InputDevice     "Synaptics Touchpad"
    154. EndSection
    155.  
    156. Section "DRI"
    157.         Mode    0666
    158. EndSection
    Paste this in your website: <script type="text/javascript" src="http://www.posteet.com/embed/487"></script>
  4. sponsorised links
  5. 2 years ago by neorom
    1. #/etc/X11/xorg.conf
    2. #Dans la section de votre souris, ajouter les 2 lignes suivantes :
    3. #!!!!!! A ECRIRE AVANT LA DEFINITION DU "Device"!!!!!!!!!!
    4. Option « ZAxisMapping » « 4 5 »
    5. Option « Buttons » « 5 »
    Paste this in your website: <script type="text/javascript" src="http://www.posteet.com/embed/33"></script>

First / Previous / Next / Last / Page 1 of 1 (4 posteets)