라벨이 ubuntu인 게시물 표시

ubuntu 16.04 마우스 스크롤 방향 바꾸기

ubuntu 16.04 에 기본으로 깔리는 evdev 에서 마우스 휠 방향을 바꾸는 방법 http://forums.fedoraforum.org/showthread.php?t=298702 1.  xinput list  로부터 마우스의 ID 알아냄 2. /usr/share/X11/xorg.conf.d/ 로 가서 Scrolling 설정 검색 :   xinput list-props {device id} | grep "Scrolling Distance:" 3.   sudo touch /usr/share/X11/xorg.conf.d/20-natural-scrolling.conf  파일을 만들고 다음과 같이 입력: Section "InputClass" Identifier "Natural Scrolling" MatchIsPointer "on" MatchDevicePath "/dev/input/event*" Option "VertScrollDelta" "-1" Option "HorizScrollDelta" "-1" Option "DialDelta" "-1" EndSection 4. 저장 후 리부트