Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am erifre on github.
  • I am erifre (https://keybase.io/erifre) on keybase.
  • I have a public key whose fingerprint is 6789 E461 4EE8 3C4A DF5D 41A9 95C3 F63E 1A28 4380

To claim this, I am signing this object:

@erifre
erifre / openpgp.txt
Created January 20, 2017 19:24
OpenKeychain Linked Identity
This Gist confirms the Linked Identity in my OpenPGP key, and links it to this GitHub account.
Token for proof:
[Verifying my OpenPGP key: openpgp4fpr:6789e4614ee83c4adf5d41a995c3f63e1a284380]
@erifre
erifre / openpgp.txt
Created January 20, 2017 19:23
OpenKeychain Linked Identity
This Gist confirms the Linked Identity in my OpenPGP key, and links it to this GitHub account.
Token for proof:
[Verifying my OpenPGP key: openpgp4fpr:6789e4614ee83c4adf5d41a995c3f63e1a284380]
@erifre
erifre / setup-sinks.sh
Last active July 2, 2016 20:33
Simpe bash script for adding sinks for streaming via OBS
#!/bin/bash
SPEAKERS="alsa_output.pci-0000_00_1b.0.analog-stereo"
HEADSET="alsa_output.usb-Creative_Technology_Ltd_SB_X-Fi_Surround_5.1_Pro_00000HaK-00.analog-stereo"
OLDSINKS=`pactl list short modules | grep "Virtual1\|Virtual2\|Virtual3" | cut -f 1`
for i in $OLDSINKS; do
echo "Unloading $i "
pactl unload-module "$i"
done