gamescope-session
gamescope-session copied to clipboard
Shebang should be bash since the script is bash
The script uses bash-isms that are incompatible with POSIX shell. Examples; [[, +=, read -t.
This is easily verifiable by running the script with dash.
This can of course be fixed in two ways:
- Make
basha dependency and set the shebang tobash. - Remove all bash-isms and make it POSIX compliant.
Option 1 is the easiest and not unreasonable in my opinion.