I'm not going to be maintaining this document anymore. I'm leaving it as-is since much of the FAQ section is still accurate and has yet to be incorporated into other resources.
Use CanI.RootMy.TV to find an exploit for your TV.
I'm not going to be maintaining this document anymore. I'm leaving it as-is since much of the FAQ section is still accurate and has yet to be incorporated into other resources.
Use CanI.RootMy.TV to find an exploit for your TV.
simple: | |
source get_device.sh | |
getdevicename 1234:abcd | |
getdevicenum 1234:abcd | |
script: | |
#Device VENDOR ID | |
: ${DEVICE_VENDOR:="1234"} | |
#Device PRODUCT ID | |
: ${DEVICE_PRODUCT:="abcd"} |
blueprint: | |
name: Create Group | |
description: | | |
# Create Group Blueprint | |
This blueprint creates a group with either static or dynamic members. | |
It has two main functions to add members | |
- Dynamically include multiple members based on a common string in their object ID's. (```Dynamic Include List```) | |
- Or statically add individual members. (```Static Entities To Add```) |
Moved to https://ftvdb.com
Follow this Guide with YOUR OWN RISK!
REQUIRED: NX-Atmosphere 0.18.x
As Atmosphere 0.18.x Releases, there is dns.mitm
module implementation to extend Nintendo Switch hosts file, but first we need to activate dns.mitm
module to be started by configuring system_settings.ini
file in atmosphere/config
. Here's the snippet section of system_settings.ini
file:
...
[atmosphere]
...
...
#!/usr/bin/env bash | |
# https://github.com/nextdns/cname-cloaking-blocklist | |
# Add this script to /etc/cron.weekly and make it executable | |
file=/tmp/pihole-nextdns.$$ | |
Cleanup() { | |
rm -f $file | |
} | |
trap Cleanup EXIT |
Credits and thanks: Home Assistant Forum users & Github users: @ocso, @wiphye, @teachingbirds, @tboyce1, @simbesh, @JeffLIrion @ff12 @rebmemer @siaox @DiederikvandenB @Thebuz @clapbr @Finsterclown
Starts Youtube App
entity_id: media_player.shield
command: >-
.stream-item { | |
margin-bottom: 0px !important; | |
} | |
.item-box { | |
padding: 2px !important; | |
border-bottom: 1px solid gray; | |
} | |
.tweet { | |
display: flex !important; | |
flex-direction: column !important; |
#!/bin/bash | |
TODAY=$(date +%Y%m%d) | |
TARGETS=( '/etc' '/home' '/root' '/var/www' ) | |
BACKUP_ROOT='/backups' | |
BACKUP_DIR="${BACKUP_ROOT}/${TODAY}" | |
echo "$(date +%D" "%r): Beginning backup" | |
mkdir -p $BACKUP_DIR | |
for i in ${TARGETS[@]}; do |