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
| Dim WshShell, WshEnv | |
| Set WshShell = CreateObject("WScript.Shell") | |
| Set WshEnv = WshShell.Environment("PROCESS") | |
| WshEnv.Item("QT_SCALE_FACTOR") = "1.5" | |
| WshShell.Run "prismlauncher.exe" |
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/sh | |
| # set the battery charging thresholds to extend battery lifespan | |
| echo ${2:-40} > /sys/devices/platform/smapi/BAT${1:-0}/start_charge_thresh | |
| echo ${3:-80} > /sys/devices/platform/smapi/BAT${1:-0}/stop_charge_thresh |
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 | |
| # Mac Spoofer | |
| # Drops a specfified adapter from the network | |
| # Then randomly changes MAC address on a specified network adapter using macchanger (https://github.com/alobbs/macchanger) | |
| # Reconnects to the network with the newly generated MAC address | |
| echo "Wireless adapter:" $1 | |
| printf "\n" | |
| service network-manager stop |