This file contains 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 | |
# PiTFT Resistive 2.8" (PID 1601) or Capacitive 2.8" (PID 1983) setup script or Resistive 3.5" (PID 2097) or 2.2" No-Touchscreen setup script! | |
set -e | |
function cleanup() { | |
if [ "${mountpoint}" != "/" ] | |
then | |
sudo -n umount "${mountpoint}/boot" 2> /dev/null |
This file contains 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
// ==UserScript== | |
// @name CloupApp Select all | |
// @match http://my.cl.ly/* | |
// @author dotzero | |
// @description Add Select All button to CloudApp web interface | |
// ==/UserScript== | |
function main() { | |
$('#toolbar').prepend('<li><a class="button" href="#" id="selall">Select all</a></li>'); | |
$('#selall').on("click", function(event){ |
NewerOlder