This file contains 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 | |
# Manually update the sponsorTimes database via sb.minibomba.pro which is a much faster and up to date server. The official SponsorBlock rsync is slow and also incremental updates do not work. | |
# The full database import that is the most accurate takes 500-800s (excluding the download), this method takes less than 15s and it only compromises the accuracy of segments that has been updated prior to the last full import. | |
DOCKER_CT="postgres-sb-mirror" | |
THEPATH=~/docker/sponsorblock | |
URL="https://sb.minibomba.pro/mirror/sponsorTimes.csv.zst" | |
echo $(date) |
This file contains 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
theme: "auto" | |
log: | |
level: "debug" | |
totp: | |
disable: false | |
algorithm: "SHA1" | |
digits: 6 | |
period: 30 |
This file contains 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
# Global Configuration | |
$server=$(cat $HOME/gamesave) | |
# Common places | |
$documents = $([Environment]::GetFolderPath("MyDocuments")) | |
$downloads = $(New-Object -ComObject Shell.Application).NameSpace('shell:Downloads').Self.Path | |
$desktop = $([Environment]::GetFolderPath("Desktop")) | |
$appdata = $env:appdata # Roaming | |
$localappdata = $env:localappdata # Local |
This file contains 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
{ | |
"policies": { | |
"ExtensionSettings": { | |
"[email protected]": { | |
"installation_mode": "force_installed", | |
"install_url": "https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi" | |
} | |
}, | |
"NoDefaultBookmarks": true, | |
"DisableTelemetry": true, |
This file contains 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
:: this script will activate your laptop to download and change power settings so it will continue to download with the lid closed | |
:: change the lid closure action do nothing | |
powercfg /setACvalueIndex scheme_current sub_buttons lidAction 0 | |
powercfg /setDCvalueIndex scheme_current sub_buttons lidAction 0 | |
:: disable sleep timeout | |
powercfg /Change standby-timeout-ac 0 | |
powercfg /Change standby-timeout-dc 0 |