- Touchscreen
- 'Atmel Atmel maXTouch Digitizer'
- Touch mode: direct
- Max number of touches: 16
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
"No... I mean, yes... or, actually, kind of.", | |
"... think he's up to the task, maybe... but... but... <sub>no.</sub>", | |
"Oh you poor poor little baby.", | |
"Now this might hurt for juuust a second.", | |
"Oh, well, better late than never, right?", | |
"Lets go! || ...Um, lets, not?", | |
"How dare you? HOW. DARE. YOU?!", | |
"Now what do you have to say for yourself? I Said, What do you have to say for yourself!?", | |
"I don't wanna talk about it.", | |
"Oh, I'm sorry. Uh, am I interupting?", |
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/bash | |
# | |
# This needs to be set to the Plugin's server directory!! | |
# | |
PP_ServerDirectory="/home/tyler/pocketmine/1.4plugdev" | |
# Just some options for cleaning up before we package. |
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/bash | |
showHelp() { | |
echo 'Options: | |
-d DIRECTORY download to a specific directory | |
(defaults to ~/Documents/pocketmineCrashes) | |
-h show this help.' | |
} |
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/bash | |
if [[ -w $1 ]]; then | |
nano $@ | |
else | |
sudo nano $@ | |
fi |
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/bash | |
CM_STATUS_JSON=$(curl -s https://status.mojang.com/check) | |
CM_STATUS_TEXT=$(echo "$CM_STATUS_JSON" | grep -o -P "{.*?}" | sed -e "s/\(\"\|{\|}\)//g" -e "s/\:/: /g") | |
CM_STATUS_COLORED=$(echo "$CM_STATUS_TEXT" | sed -e 's/\://g' \ | |
-r -e 's/([^ ]*) (.* )?(.*$)/\3 \1/' \ | |
-e "s/green /$(echo -e '\033[0;32m')/" \ | |
-e "s/red /$(echo -e '\033[0;31m')/" \ |
NewerOlder