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
[Unit] | |
Description=Monero Wallet RPC | |
After=monerod.service | |
[Service] | |
User=satoshi | |
Group=satoshi | |
Type=simple | |
ExecStart=/usr/local/bin/monero-wallet-rpc --rpc-bind-ip=127.0.0.1 --disable-rpc-login \ |
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 | |
TITLE=$1 | |
MESSAGE=$2 | |
PRIORITY=${3:-0} | |
RETRY=${4:-60} | |
EXPIRE=${5:-300} | |
if [ -z "$TITLE" ]; then | |
echo "No title provided" |
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
[Unit] | |
Description=Samourai Dojo | |
After=bitcoind.service | |
[Service] | |
ExecStart=/home/satoshi/bin/dojo start | |
ExecStop=/home/satoshi/bin/dojo stop | |
User=satoshi | |
Group=satoshi | |
Type=forking |
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
[Unit] | |
Description=Umbrel Middleware | |
Requires=lnd.service | |
Wants=umbrel-manager.service | |
After=umbrel-manager.service | |
[Service] | |
WorkingDirectory=/home/satoshi/source/umbrel/umbrel-middleware | |
ExecStart=/usr/bin/yarn start | |
PIDFile=/home/satoshi/.umbrel/umbrel-middleware.pid |
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
[Unit] | |
Description=Umbrel Manager | |
Requires=lnd.service | |
After=lnd.service | |
[Service] | |
WorkingDirectory=/home/satoshi/source/umbrel/umbrel-manager | |
ExecStart=/usr/bin/yarn start | |
PIDFile=/home/satoshi/.umbrel/umbrel-manager.pid |
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 | |
URL=http://192.168.0.1 | |
REFERER="$URL/index.html" | |
URL_SET="$URL/goform/goform_set_cmd_process" | |
URL_GET="$URL/goform/goform_get_cmd_process" | |
CONTENT_PREVIEW_LENGTH=40 | |
command -v jq >/dev/null 2>&1 || { echo >&2 "'jq' is required but not installed. Aborting."; exit 1; } |
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 | |
ARGS=$* | |
sudo apt-get update && sudo apt-get upgrade -y | |
needs_update() { | |
if [[ "$ARGS" == *force* ]]; then | |
git pull > /dev/null | |
else |
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
[Unit] | |
Description=ZTE SMS Forwarder | |
[Service] | |
User=pi | |
Group=pi | |
ExecStart=/home/pi/bin/zte-sms-forwarder.sh |
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
[Unit] | |
Description=ZTE SMS Forwarder timer | |
[Timer] | |
OnBootSec=10 | |
OnUnitActiveSec=10 | |
Unit=zte-sms-forwarder.service | |
[Install] | |
WantedBy=timers.target |
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 | |
PUSHOVER_TOKEN="<token>" | |
PUSHOVER_USER="<user>" | |
# The list of blocked keywords | |
declare -a BLOCKED=("uber eats" "block another keyword") | |
URL=http://192.168.0.1 | |
REFERER="$URL/index.html" | |
URL_SET="$URL/goform/goform_set_cmd_process" |
NewerOlder