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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE KSysGuardWorkSheet> | |
| <WorkSheet rows="4" locked="0" interval="0.2" title="System Load" columns="3"> | |
| <host command="ksysguardd" port="-1" shell="" name="localhost"/> | |
| <display row="2" class="FancyPlotter" hLines="1" hScale="1" unit="" vDistance="30" column="0" showUnit="1" vLines="0" svgBackground="" rowSpan="1" labels="1" fontSize="8" version="1" autoRange="1" title="Pages" vScroll="0" manualRange="0" columnSpan="1" stacked="0"> | |
| <beam hostName="localhost" sensorType="float" sensorName="cpu/pageIn" color="0xff0057ae"/> | |
| <beam hostName="localhost" sensorType="float" sensorName="cpu/pageOut" color="0xffe20800"/> | |
| </display> | |
| <display row="2" class="FancyPlotter" hLines="1" hScale="1" unit="" vDistance="30" column="1" showUnit="1" vLines="0" svgBackground="" rowSpan="1" labels="1" fontSize="8" version="1" autoRange="1" title="Context Switches" vScroll="0" manualRange="0" columnSpan="1" stacked="0"> | |
| <beam hostName="localhost" sensorType="float" sensorName="cpu/ |
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
| var cOutput = document.getElementById('wrap'); | |
| var w = cOutput.offsetWidth; | |
| var h = cOutput.offsetHeight; | |
| var renderer = new PIXI.WebGLRenderer(w, h); | |
| cOutput.appendChild(renderer.view); | |
| var stage = new PIXI.Container(); | |
| var container = new PIXI.Container(); | |
| var foreground = new PIXI.Container(); |
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
| cd "$ANDROID_HOME/platform-tools/" | |
| ./adb kill-server | |
| IP=$(./adb shell ifconfig wlan0 | grep "inet addr:\([^ ]*\)" -o | sed 's/inet addr:\([^ ]*\)/\1/g') | |
| ./adb tcpip 5555 | |
| echo Connecting to $IP | |
| ./adb connect $IP |
NewerOlder