11 lines
319 B
Bash
Executable File
11 lines
319 B
Bash
Executable File
#!/bin/bash
|
|
|
|
|
|
# https://www.reddit.com/r/linux/comments/72mfv8/psa_for_firefox_users_set_moz_use_xinput21_to/
|
|
# smooth scrolling
|
|
# touchscreen scrolling
|
|
# https://askubuntu.com/questions/853910/how-to-enable-touchscreen-scrolling-in-firefox/994483#994483
|
|
|
|
HOME=$MOZILLA_HOME
|
|
env MOZ_USE_XINPUT2=1 /usr/bin/firefox "$@"
|