Skip to content

Commit af9b659

Browse files
committed
updated scripts
1 parent 09dd072 commit af9b659

File tree

3 files changed

+61
-10
lines changed

3 files changed

+61
-10
lines changed

setup-raspbian.sh

+11-10
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
wget https://github.com/excelsi0r/SteamLinkBluetoothKeybordMouseCompanion/releases/download/v0.2-beta/bluetoothcontroller.o -O bluetoothcontroller.o &&
44
sudo cp bluetoothcontroller.o /usr/local/bin/bluetoothcontroller.o &&
5+
sudo chmod +x /usr/local/bin/bluetoothcontroller.o &&
56
rm bluetoothcontroller.o &&
67
sudo sed -i 's;ExecStart=/usr/lib/bluetooth/bluetoothd;ExecStart=/usr/lib/bluetooth/bluetoothd --compat/g' /etc/systemd/system/dbus-org.bluez.service &&
78
sudo echo "#! /bin/sh
8-
# /etc/init.d/noip
9-
9+
# /etc/init.d/noip
1010
### BEGIN INIT INFO
1111
# Provides: noip
1212
# Required-Start: $remote_fs $syslog
@@ -16,32 +16,33 @@ sudo echo "#! /bin/sh
1616
# Short-Description: Simple script to start a program at boot
1717
# Description: A simple script from www.stuffaboutcode.com which will sta$
1818
### END INIT INFO
19-
2019
# If you want a command to always run, put it here
21-
2220
# Carry out specific functions when asked to by the system
23-
case \"$1\" in
21+
22+
case $1 in
2423
start)
2524
echo \"Starting BluetoothController\"
2625
/usr/local/bin/bluetoothcontroller.o &
2726
echo \"Please Run\"
28-
;;
27+
;;
2928
stop)
3029
echo \"Stopping BluetoothController\"
3130
pkill bluetoothcontro
32-
;;
31+
;;
3332
restart)
3433
echo \"Restarting BluetoothController\"
3534
pkill bluetoothcontro
3635
/usr/local/bin/bluetoothcontroller.o &
37-
;;
36+
;;
3837
*)
39-
echo \"Usage: /etc/init.d/bluetoothcontroller {start|stop}\"
38+
echo \"Usage: /etc/init.d/bluetoothcontroller { start \| stop \| restart }\"
4039
exit 1
41-
;;
40+
;;
4241
esac
4342
4443
exit 0
44+
45+
# vim:noet
4546
" &> /etc/init.d/bluetoothcontroller &&
4647
sudo chmod +x /etc/init.d/bluetoothcontroller &&
4748
sudo ln -s /etc/init.d/bluetoothcontroller /etc/rc2.d/S02bluetoothcontroller

setup-steamlink.sh

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ then
99
sshpass -p 'steamlink123' scp bluetoothcontroller.o root@$1:/home/steam/bin/bluetoothcontroller.o &&
1010
rm bluetoothcontroller.o &&
1111

12+
sshpass -p 'steamlink123' sed -i 's/#Name = %h-%d/Name = Steam Link/g' /etc/bluetooth/main.conf
13+
1214
sshpass -p 'steamlink123' ssh root@$1 'echo "#!/bin/sh
1315
1416
#DEBUG_OPTIONS=-d

setup-ubuntu.sh

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
#! /bin/bash
2+
3+
wget https://github.com/excelsi0r/SteamLinkBluetoothKeybordMouseCompanion/releases/download/v0.2-beta/bluetoothcontroller-x80_86.o -O bluetoothcontroller.o &&
4+
sudo cp bluetoothcontroller.o /usr/local/bin/bluetoothcontroller.o &&
5+
sudo chmod +x /usr/local/bin/bluetoothcontroller.o &&
6+
rm bluetoothcontroller.o &&
7+
sudo sed -i 's;ExecStart=/usr/lib/bluetooth/bluetoothd;ExecStart=/usr/lib/bluetooth/bluetoothd --compat/g' /etc/systemd/system/dbus-org.bluez.service &&
8+
sudo echo "#! /bin/sh
9+
# /etc/init.d/noip
10+
### BEGIN INIT INFO
11+
# Provides: noip
12+
# Required-Start: $remote_fs $syslog
13+
# Required-Stop: $remote_fs $syslog
14+
# Default-Start: 2 3 4 5
15+
# Default-Stop: 0 1 6
16+
# Short-Description: Simple script to start a program at boot
17+
# Description: A simple script from www.stuffaboutcode.com which will sta$
18+
### END INIT INFO
19+
# If you want a command to always run, put it here
20+
# Carry out specific functions when asked to by the system
21+
22+
case $1 in
23+
start)
24+
echo \"Starting BluetoothController\"
25+
/usr/local/bin/bluetoothcontroller.o &
26+
echo \"Please Run\"
27+
;;
28+
stop)
29+
echo \"Stopping BluetoothController\"
30+
pkill bluetoothcontro
31+
;;
32+
restart)
33+
echo \"Restarting BluetoothController\"
34+
pkill bluetoothcontro
35+
/usr/local/bin/bluetoothcontroller.o &
36+
;;
37+
*)
38+
echo \"Usage: /etc/init.d/bluetoothcontroller { start \| stop \| restart }\"
39+
exit 1
40+
;;
41+
esac
42+
43+
exit 0
44+
45+
# vim:noet
46+
" &> /etc/init.d/bluetoothcontroller &&
47+
sudo chmod +x /etc/init.d/bluetoothcontroller &&
48+
sudo ln -s /etc/init.d/bluetoothcontroller /etc/rc2.d/S02bluetoothcontroller

0 commit comments

Comments
 (0)