summaryrefslogtreecommitdiffstats
path: root/zsh
diff options
context:
space:
mode:
Diffstat (limited to 'zsh')
-rw-r--r--zsh/.zshrc.local11
1 files changed, 11 insertions, 0 deletions
diff --git a/zsh/.zshrc.local b/zsh/.zshrc.local
index 7600202..5641d58 100644
--- a/zsh/.zshrc.local
+++ b/zsh/.zshrc.local
@@ -5,3 +5,14 @@ BASE16_SHELL="$HOME/.theme/base16-$BASE16_SCHEME.dark.sh"
PATH="$HOME/.local/bin:$PATH"
+# take
+function take() {
+ mkdir -p $1
+ cd $1
+}
+
+function y() {
+ cd ~/music
+ youtube-dl -f bestaudio $1
+ for f in *.m4a; do ffmpeg -i "$f" -codec:v copy -codec:a libmp3lame -q:a 2 "${f%.m4a}.mp3"; rm "$f"; done
+}