Remember to replace the folder directory, <AdminPassword>
, <RCONPort>
to your own.
Also, you need to use crontab
to schedule the following scripts if necessary.
I'm using supervisor to restart the service, the example config is as:
[ | |
{ | |
"Author": "Haplo064", | |
"Name": "Chat Bubbles", | |
"Description": "\u4f7f\u7528\u6e38\u620f\u5185\u7f6e\u7684\u53d1\u8a00\u6c14\u6ce1\u6765\u5c55\u793a\u804a\u5929\u5185\u5bb9", | |
"InternalName": "ChatBubbles", | |
"AssemblyVersion": "1.3.2.0", | |
"RepoUrl": "https://github.com/Haplo064/ChatBubbles", | |
"ApplicableVersion": "any", | |
"Tags": [ |
#!/bin/bash | |
# This script is enabling (uncommenting) the Chinese&Japanese locale and regenerates them | |
sudo steamos-readonly disable | |
sudo pacman-key --init | |
sudo pacman-key --populate archlinux | |
sudo pacman -S glibc | |
sudo sed -i "s%#ja_JP.UTF-8 UTF-8%ja_JP.UTF-8 UTF-8%" /etc/locale.gen | |
sudo sed -i "s%#zh_CN.UTF-8 UTF-8%zh_CN.UTF-8 UTF-8%" /etc/locale.gen |
# author: Bluefissure | |
# License: MIT License | |
# Description: Fixes Palworld brokwn save files corrupted by someone existing the guild | |
# Based on the work of https://github.com/cheahjs/palworld-save-tools/releases/tag/v0.13.0 | |
import argparse | |
import codecs | |
import os | |
import json | |
from lib.gvas import GvasFile |
// ==UserScript== | |
// @name XPath Change Notifier | |
// @namespace http://tampermonkey.net/ | |
// @version 1.4 | |
// @description 每分钟检测指定 XPath 元素是否发生变化 | |
// @author Bluefissure | |
// @match https://us-store.msi.com/* | |
// @match https://www.bestbuy.com/site/* | |
// @grant GM_notification | |
// @grant GM_setValue |