How To: Enable Your Toshiba's Bluetooth & Brightness Control

Write tutorials for Linux Mint here
More tutorials on https://github.com/orgs/linuxmint/discu ... /tutorials and (archive) on https://community.linuxmint.com/tutorial
Forum rules
Don't add support questions to tutorials; start your own topic in the appropriate sub-forum instead. Before you post read forum rules
Post Reply
hotweiss

How To: Enable Your Toshiba's Bluetooth & Brightness Control

Post by hotweiss »

Thanks to Tim Anderson's blog I was able to get my Bluetooth and brightness controls working:

http://www.itwriting.com/blog/?p=333#comment-35858

You see, the driver that enables your Bluetooth also enables your brightness control. This is done by creating a script file that turns it on at start-up.


Step 1: Change to the directory where we are going to have the script file.
cd /etc/init.d
Step 2: Creat the script file.
sudo nano tosh-bluetooth
Step 3: Paste this script.
#! /bin/bash

# script to start/stop Toshiba Bluetooth adapter
# requires toshset

case "$1" in
start)
/usr/bin/toshset -bluetooth on
;;
stop)
/usr/bin/toshset -bluetooth off
;;
*)
echo "Usage: /etc/init.d/tosh-bluetooth {start|stop}" >&2
exit 1
;;

esac

exit 0
Step 4: Save and exit Nano.

Type Ctrl-O to exit and Ctrl-X to exit.

Step 5: Make the script executable.
sudo chmod 755 tosh-bluetooth
Step 6: Add it to the startup scripts.
sudo update-rc.d tosh-bluetooth defaults
Step 7: Reboot.

Your Bluetooth should now be working as expected.
Husse

Re: How To: Enable Your Toshiba's Bluetooth & Brightness Control

Post by Husse »

Interesting - is this for any Toshiba?
hotweiss

Re: How To: Enable Your Toshiba's Bluetooth & Brightness Control

Post by hotweiss »

Husse wrote:Interesting - is this for any Toshiba?
Only for Toshiba's that actually have a Toshiba Bluetooth module (most Toshiba's); not all Toshiba's have Toshiba Bluetooth modules oddly enough.

Enabling the Bluetooth enables the toshset ACPI module which also gives you access to the brightness keys.
Post Reply

Return to “Tutorials”