This is a guide that I put together which is primarily aimed at Steam Deck enthusiasts and developers. I will be updating this over time as I think of more things to put in here.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# /home/root/monitor_wlan0_ip.sh | |
iface=wlan0 | |
get_dbus_iface() { | |
dbus-send --system --dest=fi.w1.wpa_supplicant1 --print-reply=literal \ | |
/fi/w1/wpa_supplicant1 \ | |
fi.w1.wpa_supplicant1.GetInterface \ | |
"string:$iface" \ | |
| sed 's/^ *//g' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
cage -- bash -c 'wlr-randr --output X11-1 --custom-mode 1280x800; sleep 1; sudo /usr/local/bin/waydroid-helper & waydroid show-full-ui' |
OlderNewer