Created
October 5, 2008 22:35
-
-
Save alsemyonov/14949 to your computer and use it in GitHub Desktop.
Xorg configuration with and without Wacom Bamboo One
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias enable_wacom='sudo cp /home/rotuka/Code/sources/wacom/wacom-switcher/xorg.with.wacom.conf /etc/X11/xorg.conf' | |
alias disable_wacom='sudo cp /home/rotuka/Code/sources/wacom/wacom-switcher/xorg.with.no.wacom.conf /etc/X11/xorg.conf' | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# X.Org X Window System server configuration with no Wacom Bamboo One support | |
# | |
# Edit this file with caution, and see the xorg.conf manual page. | |
# (Type "man xorg.conf" at the shell prompt.) | |
# | |
# This file is automatically updated on xserver-xorg package upgrades *only* | |
# if it has not been modified since the last upgrade of the xserver-xorg | |
# package. | |
# | |
# If you have edited this file but would like it to be automatically updated | |
# again, run the following command: | |
# sudo dpkg-reconfigure -phigh xserver-xorg | |
Section "InputDevice" | |
Identifier "Generic Keyboard" | |
Driver "kbd" | |
Option "XkbRules" "xorg" | |
Option "XkbModel" "pc105" | |
Option "XkbLayout" "us,ru" | |
Option "XkbVariant" ",winkeys" | |
Option "XkbOptions" "grp:caps_toggle,lv3:ralt_switch,grp_led:scroll" | |
EndSection | |
Section "InputDevice" | |
Identifier "Configured Mouse" | |
Driver "mouse" | |
Option "CorePointer" | |
EndSection | |
Section "Device" | |
Identifier "Configured Video Device" | |
Driver "nvidia" | |
Option "NoLogo" "True" | |
EndSection | |
Section "Monitor" | |
Identifier "Configured Monitor" | |
EndSection | |
Section "Screen" | |
Identifier "Default Screen" | |
Monitor "Configured Monitor" | |
Device "Configured Video Device" | |
Defaultdepth 24 | |
EndSection | |
Section "ServerLayout" | |
Identifier "Default Layout" | |
Screen "Default Screen" | |
EndSection | |
Section "Module" | |
Load "glx" | |
EndSection |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# X.Org X Window System server configuration with Wacom Bamboo One support | |
# | |
# Edit this file with caution, and see the xorg.conf manual page. | |
# (Type "man xorg.conf" at the shell prompt.) | |
# | |
# This file is automatically updated on xserver-xorg package upgrades *only* | |
# if it has not been modified since the last upgrade of the xserver-xorg | |
# package. | |
# | |
# If you have edited this file but would like it to be automatically updated | |
# again, run the following command: | |
# sudo dpkg-reconfigure -phigh xserver-xorg | |
Section "InputDevice" | |
Identifier "Generic Keyboard" | |
Driver "kbd" | |
Option "XkbRules" "xorg" | |
Option "XkbModel" "pc105" | |
Option "XkbLayout" "us,ru" | |
Option "XkbVariant" ",winkeys" | |
Option "XkbOptions" "grp:caps_toggle,lv3:ralt_switch,grp_led:scroll" | |
EndSection | |
Section "InputDevice" | |
Identifier "Configured Mouse" | |
Driver "mouse" | |
Option "CorePointer" | |
EndSection | |
Section "InputDevice" | |
Driver "wacom" | |
Identifier "stylus" | |
Option "Device" "/dev/input/wacom" | |
Option "Type" "stylus" | |
Option "USB" "on" | |
EndSection | |
Section "InputDevice" | |
Driver "wacom" | |
Identifier "pad" | |
Option "Device" "/dev/input/wacom" | |
Option "Type" "pad" | |
Option "USB" "on" | |
EndSection | |
Section "Device" | |
Identifier "Configured Video Device" | |
Driver "nvidia" | |
Option "NoLogo" "True" | |
EndSection | |
Section "Monitor" | |
Identifier "Configured Monitor" | |
EndSection | |
Section "Screen" | |
Identifier "Default Screen" | |
Monitor "Configured Monitor" | |
Device "Configured Video Device" | |
Defaultdepth 24 | |
EndSection | |
Section "ServerLayout" | |
Identifier "Default Layout" | |
Screen "Default Screen" | |
InputDevice "stylus" "SendCoreEvents" | |
InputDevice "pad" | |
EndSection | |
Section "Module" | |
Load "glx" | |
EndSection |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment