-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add new script to manage your galaxy buds
- Loading branch information
1 parent
9ab5595
commit 836a567
Showing
1 changed file
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
#!/usr/bin/env bash | ||
|
||
usage() { | ||
echo "The Samsung Galaxy Buds are a line of wireless Bluetooth earbuds designed by Samsung Electronics. They were first released on March 9, 2019, as the successor to the Gear IconX." | ||
|
||
# shellcheck disable=1004,2016,2028 | ||
echo ' | ||
_ _ _ | ||
__ _ __ _| | __ ___ ___ _| |__ _ _ __| |___ | ||
/ _` |/ _` | |/ _` \ \/ / | | | |_ \| | | |/ _` / __| | ||
| (_| | (_| | | (_| |> <| |_| | |_) | |_| | (_| \__ \ | ||
\__, |\__,_|_|\__,_/_/\_\\__, |_.__/ \__,_|\__,_|___/ | ||
|___/ |___/ | ||
' | ||
} | ||
|
||
pre_main() { | ||
return 0 | ||
} | ||
|
||
main_pacman() { | ||
return 1 | ||
} | ||
|
||
main_xbps() { | ||
return 1 | ||
} | ||
|
||
main_apt() { | ||
return 1 | ||
} | ||
|
||
main_brew() { | ||
require_brew_cask galaxybudsclient | ||
} | ||
|
||
main() { | ||
return 0 | ||
} | ||
|
||
main_parham() { | ||
return 0 | ||
} |