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
| #!/usr/bin/env bash | |
| ####################### | |
| # btheadset_toggle.sh | |
| # | |
| # Toggles bluetooth headset mode between | |
| # A2DP (high quality, no microphone) | |
| # and headset (low quality + microphone). | |
| # | |
| # Usage: ./btheadset_toggle.sh | |
| # |
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
| #!/usr/bin/env bash | |
| ##################### | |
| # toggle-screen-dimmer.sh - X screen dimmer toggler | |
| # Uses xrandr to toggle between dimming/brightening connected displays | |
| # See --help for usage | |
| # Recommended: create a launcher for this script on the task bar! | |
| ##################### | |
| list_displays() { | |
| xrandr --verbose --current | awk '/ connected/ {print $1}' |
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
| # Usage: wprockettest https://example.com/some-path/ | |
| wprockettest() { | |
| URL="$1" | |
| echo -n "$URL --> " | |
| RES="$(curl -ksvG "$URL" 2>&1)" | |
| CODE="$(echo "$RES" | grep -E '^< HTTP' | awk '{print $3}')" | |
| CACHE_STATUS="Not cached" | |
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
| #!/usr/bin/env bash | |
| ##################### | |
| # Buggy, but good enough. | |
| # Walks over users' Plesk-managed wp-cron entries, to change this: | |
| # <whatever> * * * * /opt/plesk/php/8.2/bin/php -f 'httpdocs/wp-cron.php' | |
| # ...into something like this: | |
| # 7,23,39,55 /opt/plesk/php/8.2/bin/php -f 'httpdocs/wp-cron.php' | |
| # so that wp-cron runs are spread out as much as possible, | |
| # to reduce simultaneous memory usage. | |
| ##################### |
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
| echo $(($(cat /sys/class/pwm/pwmchip0/pwm0/duty_cycle) / 5000))% |
OlderNewer