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