Commit | Line | Data |
---|---|---|
686c6d84 AB |
1 | # Base16 Shell |
2 | BASE16_SCHEME="thewildhunt" | |
3 | BASE16_SHELL="$HOME/.theme/base16-$BASE16_SCHEME.dark.sh" | |
4 | [[ -s $BASE16_SHELL ]] && . $BASE16_SHELL | |
5 | ||
6 | PATH="$HOME/.local/bin:$PATH" | |
75cd1329 | 7 | PATH="`ruby -e 'print Gem.user_dir'`/bin:$PATH" |
22611512 | 8 | PATH="/opt/android-sdk/platform-tools:$PATH" |
686c6d84 | 9 | |
b6b6b06a AB |
10 | # take |
11 | function take() { | |
12 | mkdir -p $1 | |
13 | cd $1 | |
14 | } | |
15 | ||
16 | function y() { | |
17 | cd ~/music | |
23e6afcb | 18 | youtube-dl --extract-audio --audio-format mp3 --audio-quality 0 $1 |
b6b6b06a | 19 | } |
22611512 AB |
20 | |
21 | eval $(/usr/bin/gnome-keyring-daemon --start --components=gpg,pkcs11,secrets,ssh) ; export GPG_AGENT_INFO SSH_AUTH_SOCK | |
22 |