Skip to content

Instantly share code, notes, and snippets.

View bmight's full-sized avatar

Brandon Might bmight

View GitHub Profile
@RyanMillerC
RyanMillerC / wpa_supplicant.conf
Created August 23, 2018 13:07
Setup WiFi for Headless Raspberry Pi Installation
country=us
update_config=1
ctrl_interface=/var/run/wpa_supplicant
network={
scan_ssid=1
ssid="MyNetworkSSID"
psk="Pa55w0rd1234"
}
@RyanMillerC
RyanMillerC / git-status-in-bash-prompt
Last active April 20, 2018 18:53
Add git branch and status to end of command prompt while inside a git directory
#!/bin/bash
#
# Created: 2017-07-02 22:44
# Updated: 2018-04-17 10:38
# Creator: Ryan Miller
# Website: http://devopsmachine.com/
# File: ~/.bashrc (Add to file)
#
# Add git information to end of yor bash command prompt while inside a git directory!
# + Will show current branch as either green (clean) or yellow (uncommited changes)