Skip to content

Instantly share code, notes, and snippets.

View sieste's full-sized avatar

Stefan Siegert sieste

View GitHub Profile
@sieste
sieste / screencast.sh
Created March 21, 2020 00:16
screencast: A bash script to simultaneously record audio from mic and video from screen
#!/bin/bash
#
# Record screen and microphone audio
# Stefan Siegert 2020, adapted from code by Steven Gordon
#
# Example usage:
# screencast intro-to-datacomms
# The audio and screen will be recorded. Press 'z' to stop.
# Two files will be created: intro-to-datacomms-audio.flac, intro-to-datacomms-screen.mp4
@sieste
sieste / config.h
Created April 5, 2020 21:32
st (simple terminal) config with solarized color scheme
/* See LICENSE file for copyright and license details. */
/*
* appearance
*
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html
*/
static char font[] = "pragmatapro:pixelsize=16:weight=medium:antialias=true:autohint=true";
static int borderpx = 2;
@sieste
sieste / wlan-eduroam
Created October 19, 2021 20:21
netctl profile for eduroam
Description='eduroam'
Interface=wlp0s20f3
Connection=wireless
IP=dhcp
Security=wpa-configsection
ESSID=eduroam
WPAConfigSection=(
'ssid="eduroam"'
'key_mgmt=WPA-EAP'
'pairwise=CCMP TKIP'