blob: 9c7d64f6eebbb6b37dab62fc37d41d932fecc90d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
post_install() {
echo "bluez must be activated (if using systemd, the bluetooth.service) before the app is started"
echo "If your system language is set to a language that has non-Latin characters (Korean, Japanese, Chinese), you need to start the app like this: LC_ALL=C galaxybudsclient"
echo "This application collects crash dumps in case of fatal application crashes and sends them to my sentry.io dashboard (can be disabled in settings)."
echo "To help me support Buds models I don't own, this app includes a crowdsourcing feature to share data about Samsung's proprietary Bluetooth serial protocol on demand. You can disable this permanently by navigating to 'Settings > Developer options'."
echo "If you experience issues while connecting or using the Galaxy Buds with this app, you can do the following:"
echo "1. Unregister your earbuds in the app if not already done, like this: Options > Unregister device"
echo "2. Proceed to the device selection page"
echo "3. Select your earbuds from the list and continue"
}
post_upgrade() {
post_install
}
|