Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b688582e55 | |||
| 94239888ec |
Executable
+2
@@ -0,0 +1,2 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
scrcpy --crop 1720:1664:0:100 -m 1000 -b 2M --max-fps 10 --no-audio
|
||||||
Executable
+24
@@ -0,0 +1,24 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
read -rp "Wireless interface: " IFACE
|
||||||
|
|
||||||
|
# Remove an existing profile with the same name (optional)
|
||||||
|
nmcli connection delete pihotspot 2>/dev/null
|
||||||
|
|
||||||
|
# Create the access point
|
||||||
|
nmcli connection add \
|
||||||
|
type wifi \
|
||||||
|
ifname "$IFACE" \
|
||||||
|
con-name pihotspot \
|
||||||
|
ssid pihotspot
|
||||||
|
|
||||||
|
# Configure it
|
||||||
|
nmcli connection modify pihotspot \
|
||||||
|
802-11-wireless.mode ap \
|
||||||
|
ipv4.method manual \
|
||||||
|
ipv4.addresses "192.168.38.1/24" \
|
||||||
|
ipv6.method ignore \
|
||||||
|
connection.autoconnect yes
|
||||||
|
|
||||||
|
# Bring it up
|
||||||
|
nmcli connection up pihotspot
|
||||||
Executable
+2
@@ -0,0 +1,2 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
microsocks -i 192.168.38.1 -p 8080
|
||||||
Executable
+4
@@ -0,0 +1,4 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
echo you need to plug in the quest via usb on first run for the session
|
||||||
|
adb tcpip 5555
|
||||||
|
adb connect 192.168.38.3:5555
|
||||||
Executable
+2
@@ -0,0 +1,2 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
for dev in "Wacom Graphire3 Pen stylus" "Wacom Graphire3 Pen eraser" "Wacom Graphire3 Pen cursor"; do xsetwacom set "$dev" MapToOutput "$1"; done
|
||||||
Reference in New Issue
Block a user