Skip to content

Instantly share code, notes, and snippets.

View jvolker's full-sized avatar

Jeremias Volker jvolker

View GitHub Profile
@jvolker
jvolker / install.sh
Last active June 21, 2020 14:39
Installs Openframe Raspberry Pi client for desktop mode.
View install.sh
#!/usr/bin/env bash
# Contributed by @quinkennedy (https://gist.github.com/quinkennedy/fc78c2bb1d6b1e27c174)
{ # this ensures the entire script is downloaded #
openframe_has() {
type "$1" > /dev/null 2>&1
}
if [ -z "$OPENFRAME_DIR" ]; then
OPENFRAME_DIR="$HOME/.openframe"
@jvolker
jvolker / install.sh
Created April 30, 2020 21:37
Installs Openframe Raspberry Pi client from master branch.
View install.sh
#!/usr/bin/env bash
# Contributed by @quinkennedy (https://gist.github.com/quinkennedy/fc78c2bb1d6b1e27c174)
{ # this ensures the entire script is downloaded #
openframe_has() {
type "$1" > /dev/null 2>&1
}
if [ -z "$OPENFRAME_DIR" ]; then
OPENFRAME_DIR="$HOME/.openframe"
@jvolker
jvolker / install.sh
Created October 20, 2019 19:22
Installs Openframe Raspberry Pi client from the jvolker's combinedPR branch from Github.
View install.sh
#!/usr/bin/env bash
# Contributed by @quinkennedy (https://gist.github.com/quinkennedy/fc78c2bb1d6b1e27c174)
{ # this ensures the entire script is downloaded #
openframe_has() {
type "$1" > /dev/null 2>&1
}
if [ -z "$OPENFRAME_DIR" ]; then
OPENFRAME_DIR="$HOME/.openframe"
@jvolker
jvolker / Openframe-Image-Creation-Guide.md
Last active June 22, 2022 05:42
Guide on how to use preinstalled Openframe images for Raspberry Pi and on how to create those images.
View Openframe-Image-Creation-Guide.md

These are working Openframe images for Raspberry Pi.

Using this image

  1. Download:
    For Raspberry Pi 4 or for all other Pis
    based on 2019-07-10-raspbian-buster
  2. Use balenaEtcher to write the image to an SD card (min. 4GB).
  3. Optional – Remove and return the SD card into your PC to edit/add to the boot partition of the SD card to do the following:
@jvolker
jvolker / wpa_supplicant.conf
Created September 26, 2019 22:52
file to be placed on boot partition of Raspberry Pi in order to enable SSH
View wpa_supplicant.conf
country=DE
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
network={
ssid="YOUR-WIFI-NAME-HERE"
psk="YOUR-WIFI-PASSWORD-HERE"
key_mgmt=WPA-PSK
}
@jvolker
jvolker / ssh
Last active September 26, 2019 22:25
file to be placed on boot partition of Raspberry Pi in order to enable SSH
We couldn’t find that file to show.
@jvolker
jvolker / create-openframe-image.sh
Last active September 29, 2019 11:45 — forked from quinkennedy/openframe_install.sh
wget/curl-able installation script for Openframe
View create-openframe-image.sh
#!/usr/bin/env bash
# Contributed by @quinkennedy (https://gist.github.com/quinkennedy/fc78c2bb1d6b1e27c174)
# modified to create images rather than installs by Jeremias Volker http://github.com/jvolker
{ # this ensures the entire script is downloaded #
openframe_has() {
type "$1" > /dev/null 2>&1
}
if [ -z "$OPENFRAME_DIR" ]; then