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 | |
| # cpu_usage_per_core.sh | |
| # Outputs per-core CPU use percentage, space separated one-liner. | |
| # Created 2020-05-14 - updated 2020-08-13 | |
| # Written for Siduction (Debian sid based distro) | |
| # By dpanter https://gist.github.com/dpanter | |
| # requires _mpstat_ (provided by Debian package _sysstat_) | |
| # Failsafe for awk arithmetic ops, if locale uses comma decimal separator | |
| LC_NUMERIC="C" |
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 | |
| # updatemesagit.sh | |
| # Easily update Mesa git from Siduction experimental repo | |
| # Created 2020-04-15 - Updated 2024-10-29 | |
| # Written for Siduction (Debian sid based distro) | |
| # By dpanter https://gist.github.com/dpanter | |
| # setting color variables for fancy pants output | |
| WHITE='\e[1;37m' |
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 | |
| # aptwhen.sh | |
| # Easily check dpkg logs when a package was installed | |
| # Created 2020-04-11 - Updated 2020-08-13 | |
| # Written for Siduction (Debian sid based distro) | |
| # By dpanter https://gist.github.com/dpanter | |
| # If no options given, print this message and quit | |
| if [ -z "$1" ]; then |
NewerOlder