Skip to content

Instantly share code, notes, and snippets.

View Nottt's full-sized avatar
🎯
Focusing

ad90xa0-aa Nottt

🎯
Focusing
View GitHub Profile
@Nottt
Nottt / compile-opus.sh
Last active September 20, 2022 18:33
Compile Opus-Tools in Ubuntu 18.04
#!/bin/bash
# Install opus-tools
# Latest releases: opus 1.3.1, opus-tools 0.2, opusfile 0.11, libopusenc 0.2.1
set -e
set -o pipefail
# Install packages needed
apt update > /dev/null 2>&1 && apt install -y curl libflac-dev > /dev/null 2>&1
@Nottt
Nottt / cloudbox-install.sh
Last active April 6, 2024 13:36
Cloudbox install script
#!/bin/bash
# Docker Setup for streaming backend using cloudbox, intended to be run as root :
## To Do : Pass arguments to script if reboot is necessary, edit only the necessary line in plex-autoscan config file.
KERNEL=$(uname -r)
BASE=4.10
echo $KERNEL
if [ "$KERNEL" != "$BASE" ]; then
tput setaf 1; echo "You don't need to reboot, continuing install" && tput setaf 7;