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 | |
| # | |
| # Install Google Apps into Sailfish OS AppSupport via bind-mounts. | |
| # Based on raphendyr's guide, updated for SFOS 5.0 / Android 13. | |
| # | |
| # Instead of patching system.img, this populates /opt/gapps-for-appsupport/ and | |
| # hooks into the AppSupport LXC container to bind-mount /product and | |
| # /system/system_ext at startup. Survives SFOS updates; uninstall by | |
| # removing the hook symlink. | |
| # |
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 | |
| set -e | |
| WORKDIR=/home/.appsupport_systemimg_patch | |
| TMPWORKDIR="$WORKDIR/tmp" | |
| SQUASHFS_ROOT="$TMPWORKDIR/squashfs-root" | |
| MOUNT_ROOT="$TMPWORKDIR/systemimg_mount" | |
| SYSTEM_IMG=/opt/appsupport/system.img | |
| ORIG_IMG_FILE=orig_img_path.txt |
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
| <?php | |
| /** | |
| * Gravity Wiz // Require Minimum Character Limit for Gravity Forms | |
| * | |
| * Adds support for requiring a minimum number of characters for text-based Gravity Form fields. | |
| * | |
| * @version 1.0 | |
| * @author David Smith <david@gravitywiz.com> | |
| * @license GPL-2.0+ | |
| * @link http://gravitywiz.com/... |
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
| # == WHAT | |
| # Simple script for growl notifications in irssi | |
| # | |
| # == WHO | |
| # Nate Murray 2008 | |
| # Modif: Leho Kraav 2009 | |
| # | |
| # == CONFIG | |
| # /SET growl_on_regex [regex] | |
| # /SET growl_channel_regex [regex] |