this post was submitted on 22 Apr 2024
0 points (NaN% liked)
Linux
48133 readers
1045 users here now
From Wikipedia, the free encyclopedia
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.
Rules
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
- No misinformation
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Thx! I could enable/disable bluetooth with your commands and that didn't solve my problem, but helped me google the right command. It is actually much simpler that I thought, I just had to find speakers MAC and I can use:
bluetoothctl connect A1:11:22:3A:CD:F1
Now working on mapping that to a key, cheers!
You could also run the command automatically every time your screen is unlocked depending on your DE. For instance, if you use GNOME, this will likely work
EDIT: see comment below for better solution
Thank you! I use GNOME, but this is kinda confusing tbh. I was also looking at this forum post where I should put a script in
/lib/systemd/system-sleep/
. I should play around with that, but can't afford breaking system right now xD. Will try it soon, I might install separate OS just for testingWell, for your particular case, you'd make a script, and a service to run that script on boot. Once the service starts, it will keep itself alive.
Here's the script:
bluetooth-reconnect.sh
You'd place this script somewhere that has system execution privilege (if your distro uses SELinux). I will use the directory /usr/scripts/ for example purposes (note that you will have to create this folder). Make sure to mark it executable with
chmod +x /usr/scripts/bluetooth-reconnect.sh
You'd then write a service to start at boot, just really barebones and simple:
bluetooth-reconnect.service
Move the service into /etc/systemd/system/ (filepath should be /etc/systemd/system/bluetooth-reconnect.service), and enable it and start it:
sudo systemctl enable bluetooth-reconnect.service && sudo systemctl start bluetooth-reconnect.service
And you should be good to go. At least assuming your distro doesn't have some specific quirk, which I wouldn't be able to help you with unless I knew what distro you run. Granted, this is my adaptation of what I saw in the linked forum and my own experience with services, I haven't actually tested this. But even if it has an issue, this will get you 90% of the way there, and there's a good chance it just works if the forum answers work for your distro.