adjust-gnome-touchpad.sh 922 B

12345678910111213141516171819202122232425
  1. #!/bin/sh -e
  2. #Adjust Gnome Touchpad settings
  3. # This file is part of PrawnOS (http://www.prawnos.com)
  4. # Copyright (c) 2020 G. Dallas Dye <gdallasdye@gmail.com>
  5. # PrawnOS is free software: you can redistribute it and/or modify
  6. # it under the terms of the GNU General Public License version 2
  7. # as published by the Free Software Foundation.
  8. # PrawnOS is distributed in the hope that it will be useful,
  9. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. # GNU General Public License for more details.
  12. # You should have received a copy of the GNU General Public License
  13. # along with PrawnOS. If not, see <https://www.gnu.org/licenses/>.
  14. #Natural scrolling is un-natural
  15. gsettings set org.gnome.desktop.peripherals.touchpad natural-scroll false
  16. #Tap to click is natural
  17. gsettings set org.gnome.desktop.peripherals.touchpad tap-to-click true