Created
April 20, 2018 06:31
-
-
Save josefmonje/d56ebabe6d08360842171217e064e3cf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SDR | |
function fm() { | |
rtl_fm -M wbfm -f $1M | play -r 32k -t raw -e s -b 16 -c 1 -V1 - | |
} | |
# Youtube downloader | |
function ytdl() { | |
youtube-dl -x --prefer-ffmpeg --audio-format mp3 $1 | |
} | |
export -f fm | |
export -f ytdl | |
# Tmux | |
~/.tmux/plugins/tpm/tpm | |
# Pipenv | |
eval "$(pipenv --completion)" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment