I hereby claim:
- I am mrpjevans on github.
- I am mrpjevans (https://keybase.io/mrpjevans) on keybase.
- I have a public key whose fingerprint is 5C88 EF5C 1AD8 94F6 D24A 278E 2EBA BCDD AB94 5B4A
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
unclutter -idle 0.5 -root & | |
sed -i 's/"exited_cleanly":false/"exited_cleanly":true/' /home/pi/.config/chromium/Default/Preferences | |
sed -i 's/"exit_type":"Crashed"/"exit_type":"Normal"/' /home/pi/.config/chromium/Default/Preferences | |
/usr/bin/chromium-browser --noerrdialogs --disable-infobars --kiosk http://127.0.0.1:6680/iris & |
[http] | |
# Make sure the web interface can be accessed by the local network | |
hostname = 0.0.0.0 | |
[audio] | |
# Direct audio to the DAC, not HDMI | |
output = alsasink | |
# The File extension isn't of much use, so we can disable it | |
[file] |
Step 1: Install dependancies
sudo apt -y update && sudo apt -y full-upgrade
sudo apt install build-essential \
cmake \
gfortran \
git \
wget \
curl \
[Shared] | |
comment = Shared | |
path = /var/shared | |
read only = no | |
browsable = yes |
[Huge] | |
comment = Huge | |
path = /mnt/huge | |
read only = no | |
browsable = yes |
#!/bin/sh | |
# Plex's repository uses HTTPS as the transport, so we need to install support | |
sudo apt update | |
sudo apt install apt-transport-https ca-certificates curl | |
# Get Plex's public key and add the Plex repo | |
curl https://downloads.plex.tv/plex-keys/PlexSign.key | sudo apt-key add - | |
echo deb https://downloads.plex.tv/repo/deb public main | sudo tee /etc/apt/sources.list.d/plexmediaserver.list |
#!/bin/sh | |
# Add Mopidy repo and install | |
wget -q -O - https://apt.mopidy.com/mopidy.gpg | sudo apt-key add - | |
sudo wget -q -O /etc/apt/sources.list.d/mopidy.list https://apt.mopidy.com/buster.list | |
sudo apt update | |
sudo apt install mopidy | |
sudo adduser mopidy video | |
# Configure (be careful with this line!) |
Please run the following commands line-by-line, not as a script: | |
sudo apt -y update && sudo apt -y upgrade | |
sudo apt install -y python3 python3-dev python3-venv python3-pip libffi-dev libssl-dev libjpeg-dev zlib1g-dev autoconf build-essential libopenjp2-7 libtiff5 libturbojpeg0 tzdata | |
sudo useradd -rm homeassistant -G dialout,gpio,i2c | |
sudo mkdir /srv/homeassistant | |
sudo chown homeassistant:homeassistant /srv/homeassistant | |
sudo -u homeassistant -H -s | |
cd /srv/homeassistant | |
python3 -m venv . |
# To support macOS Time Machine backups in Samba | |
# Create a share that has the following properties | |
# in /etc/samba/smb.conf | |
# In this example we have a mounted drive called 'huge' | |
# with a directory called 'Time Machine' | |
[Time Machine] | |
comment = Time Machine | |
path = /mnt/huge/Time Machine | |
read only = no |