Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bluetooth manager fails on ZorinOS(Debian) #246

Closed
maheshrijal opened this issue Sep 5, 2024 · 4 comments · Fixed by #282
Closed

Bluetooth manager fails on ZorinOS(Debian) #246

maheshrijal opened this issue Sep 5, 2024 · 4 comments · Fixed by #282

Comments

@maheshrijal
Copy link

Describe the bug

Bluetooth Manager fails on Zorin OS 17.1

To Reproduce

Steps to reproduce the behavior:

  1. Go to 'Utilities'
  2. Run 'Bluetooth manager'

Expected behavior

Screenshots

image

Additional context

@maheshrijal
Copy link
Author

I might have figured this out. I think the redirection <<< operator does not work in the sh shell it only works on bash.

@maheshrijal
Copy link
Author

Perhaps replacing the line 78 in bluetooth-control.sh will fix this?

Old: IFS=$'\n' read -r -a device_list <<<"$devices"
New: echo "$devices" | IFS=$'\n' read -r -a device_list

@guruswarupa
Copy link
Contributor

at first when i pushed, it was in bash. Later they changed it cause it was not working in ubuntu to use sh instead of bash :)

@maheshrijal
Copy link
Author

Ah I see. I pushed a patch after I was able to ran it locally.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants