Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. ### Disable Mouse Acceleration:
  2. `/usr/share/X11/xorg.conf.d/90-mouse.conf`
  3.  
  4. Section "InputClass"
  5. Identifier "mouse"
  6. MatchIsPointer "on"
  7. Option "AccelerationProfile" "-1"
  8. Option "AccelerationScheme" "none"
  9. EndSection
  10.  
  11. ### Change application with mouse scroll on dock (Переключение приложений при помощи колёсика мыши):
  12. `/usr/bin/gsettings set org.gnome.shell.extensions.dash-to-dock scroll-action 'cycle-windows'`
  13.  
  14.  
  15. ### Minimize application by click on its icon on dock (Сворачивание приложение кликом по его иконке в dock):
  16. `/usr/bin/gsettings set org.gnome.shell.extensions.dash-to-dock click-action 'minimize'`
  17.  
  18. ### Automount ntfs disk on startup
  19. Add to file `/etc/fstab` string:
  20.  
  21. `UUID=<disc_uuid> /path/to/mount ntfs auto,user,rw,exec 0 0`
  22.  
  23. where UUID could be get by `sudo blkid` command.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement