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 | |
| # Enable or disable Intel Turbo-Boost | |
| # Requires msr kernel module to be built and loaded | |
| # Will ask for root privileges when the time comes | |
| # Copied, with love, from: | |
| # https://notepad2.blogspot.com/2014/11/a-script-to-turn-off-intel-cpu-turbo.html | |
| if [[ -z $(which rdmsr) ]]; then | |
| echo "msr-tools is not installed. Run 'sudo apt-get install msr-tools' to install it." >&2 |
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
| # --------------------------------------------------------------------------- | |
| # | |
| # Description: This file holds all my BASH configurations and aliases | |
| # | |
| # Sections: | |
| # 1. Environment Configuration | |
| # 2. Make Terminal Better (remapping defaults and adding functionality) | |
| # 3. File and Folder Management | |
| # 4. Searching | |
| # 5. Process Management |