Skip to content

Instantly share code, notes, and snippets.

View Iamtotallyunsure's full-sized avatar

Iamtotallyunsure

View GitHub Profile
@Iamtotallyunsure
Iamtotallyunsure / piobsinstaller.sh
Last active July 1, 2020 17:37 — forked from shivasiddharth/piobsinstaller.sh
Script for installing OBS on Raspberry Pi
#!/bin/bash
echo ""
echo "Checking memory size.........."
Totalmem=$(cat /proc/meminfo|grep MemTotal|grep -o '[0-9]*')
if (($Totalmem > 3500000)); then
echo ""
echo "You have got enough memory. No need for a swap partition.........."
echo ""
else