This commit is contained in:
Jaroslaw Konik 2026-03-27 10:53:01 +01:00
parent 8d243e2c13
commit 66b665cf73
2 changed files with 3 additions and 5 deletions

View file

@ -1,4 +1,3 @@
#
# ~/.bashrc
#
@ -20,7 +19,6 @@ export SSH_ASKPASS_REQUIRE=prefer
export LUA_INIT=@$HOME/src/dotfiles/lua_init.lua
# PS1='[\u@\h \W]\$ '
starship_precmd
eval "$(starship init bash)"
echo "You are not here to produce."

View file

@ -1,3 +1,3 @@
#!/bin/bash
INPUT=$(termux-dialog -t "Enter Spotify URL or song name" | jq -r '.text')
spotdl "$INPUT" --output ~/storage/music
#!/bin/sh
yt-dlp --embed-metadata -x --audio-format aac -f bestaudio "$1" -o "~/Music/%(artist)s - %(title)s.%(ext)s"