How to use:
./wordle.sh
Or try the unlimit mode:
| on getMicrophoneVolume() | |
| input volume of (get volume settings) | |
| end getMicrophoneVolume | |
| on disableMicrophone() | |
| set volume input volume 0 | |
| display notification "Mic volume set to zero" with title "Mic volume toggled" sound name "Funk" | |
| end disableMicrophone | |
| on enableMicrophone() |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env bash | |
| COLS="$(tput cols)" | |
| if [[ "$COLS" -le 0 ]] ; then | |
| COLS="${COLUMNS:-80}" | |
| fi | |
| hr() { | |
| local WORD="$1" |
| #!/bin/bash | |
| # A simple script to make live backups of an organization's GitHub repositories. | |
| # Where to store the backup files | |
| GHBU_BACKUP_DIR=${GHBU_BACKUP_DIR-"==/FULL/PATH/TO/BACKUPDIR=="} | |
| # The GitHub organization whose repos will be backed up | |
| GHBU_ORG=${GHBU_ORG-"==ORGANIZATION=="} | |
| # GitHub API token. |
| #!/bin/bash | |
| # Locate our phpunit. | |
| phpunit=`which phpunit` | |
| # Define a location to save the output. | |
| outputlog="/tmp/phpunit_output_`date +%s`.log" | |
| # Get name of the project (probably topmost directory name). | |
| projectname=${PWD##*/} |