You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The second option is probably preferable as to not add another dependency (though it's bash, so who really cares). That being said, I'm not the best with shell scripting so there might be a better way to solve this issue.
The shebang in leetmouse_manage is #!/bin/sh.
This works fine on systems in which /bin/bash is symlinked to /bin/sh. However, if this is not the case the script raises issue with the lines
if [ $1 == "unbind_all" ]; then
and
if [ $1 == "bind_all" ]; then
The shebang should be changed to #!/bin/bash or the double equals sign
==
should be changed to a single equals sign=
.The text was updated successfully, but these errors were encountered: