This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # ps5triggers | |
| # | |
| # This script is intended as a cozy way to manipulate | |
| # the behavior of the DualSense's triggers using | |
| # 'dualsensectl' | |
| # | |
| # It can either set behavior and exit | |
| # | |
| # OR |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # ----------------------------------------------- | |
| # Handle URLs using preferred ways | |
| # ----------------------------------------------- | |
| shopt -s extglob | |
| DEFAULT_BROWSER=firefox | |
| # Since the script is to act as the real defualt web browser | |
| # We need to not call xdg-open to avoid creating an infinite loop |