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 -e | |
## | |
## Title: SystemTemp.sh | |
## Description: Script for use with M/Monit to monitor system temperature | |
## Author: B. van wetten | |
## Created date: 22-01-2020 | |
## Updated date: 23-01-2020 | |
## Version: 0.2 | |
## GitHub Gist: https://gist.github.com/QNimbus/b2ead8cde75bcf9b177b1a9d951d9411 | |
## |
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 -e | |
## | |
## Title: CPUTemp.sh | |
## Description: Script for use with M/Monit to monitor CPU core temperature | |
## Author: B. van wetten | |
## Created date: 21-01-2020 | |
## Updated date: 23-01-2020 | |
## Version: 0.3 | |
## GitHub Gist: https://gist.github.com/QNimbus/529ab50d7293a42f7bb2924c27b4b951 | |
## |
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
// ==UserScript== | |
// @name Stadia Fullscreen | |
// @namespace Stadia | |
// @version 0.3 | |
// @description Will force fullscreen on any Stadia launch URL for the first click. | |
// @author EricLowry | |
// @include /^https:\/\/stadia\.google\.com\/(u\/[0-9]+\/)?player\/.+/ | |
// @grant none | |
// @downloadURL https://gist.github.com/QNimbus/09f036615ced9f873a5b3d16849b6a91 | |
// ==/UserScript== |
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
git filter-branch --tree-filter 'rm -rf dist' --prune-empty HEAD | |
git for-each-ref --format="%(refname)" refs/original/ | xargs -n 1 git update-ref -d | |
cat <<EOT > .gitignore | |
node_modules/ | |
dist/ | |
EOT | |
git add .gitignore | |
git commit -m 'Removing dist from git history' | |
git gc |
NewerOlder