Skip to content

Commit

Permalink
feat: add mp3tag to maintain musics
Browse files Browse the repository at this point in the history
  • Loading branch information
1995parham committed Nov 1, 2024
1 parent 067019c commit 213b073
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 1 deletion.
43 changes: 43 additions & 0 deletions scripts/mp3tag.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
#!/usr/bin/env bash

usage() {
echo "The universal tag editor and more ..."

# shellcheck disable=1004,2016
echo '
_____ _
_ __ ___ _ __|___ /| |_ __ _ __ _
| |_ ` _ \| |_ \ |_ \| __/ _` |/ _` |
| | | | | | |_) |__) | || (_| | (_| |
|_| |_| |_| .__/____/ \__\__,_|\__, |
|_| |___/
'
}

pre_main() {
return 0
}

main_pacman() {
require_aur mp3tag
}

main_xbps() {
return 1
}

main_apt() {
return 1
}

main_brew() {
require_brew_cask mp3tag
}

main() {
return 0
}

main_parham() {
return 0
}
1 change: 0 additions & 1 deletion scripts/mpd.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ usage() {

main_pacman() {
require_pacman mpd ncmpcpp mpc
# require_pacman strawberry
}

main() {
Expand Down

0 comments on commit 213b073

Please sign in to comment.