Under Terminal > Preferences... > (Profile) > Advanced, "Declare terminal as:" should be set to xterm-256color
.
This is easy with homebrew:
brew install screen
#!/bin/bash | |
ps axuwww | grep Adobe --exclude='grep' | awk '{print $2}' | xargs sudo kill -9 | |
ps axuwww | grep 'com.adobe.acc.installer.v2' --exclude='grep' | awk '{print $2}' | xargs sudo kill -9 | |
echo "\n\n--- Done! ---\n\n" |
#!/usr/bin/env bash | |
#################################################################################### | |
# Slack Bash console script for sending messages. | |
#################################################################################### | |
# Installation - LINUX | |
# $ curl -s https://gist.githubusercontent.com/earendildev/b08f5923885ae665fe35715827a1c332/raw --output /usr/bin/slack | |
# $ chmod +x /usr/bin/slack | |
#################################################################################### | |
# Installation - MAC | |
# $ curl -s https://gist.githubusercontent.com/earendildev/b08f5923885ae665fe35715827a1c332/raw --output /usr/local/bin/slack |
Under Terminal > Preferences... > (Profile) > Advanced, "Declare terminal as:" should be set to xterm-256color
.
This is easy with homebrew:
brew install screen
#! /bin/bash | |
n=32 | |
arg=setaf | |
text='Hello World! This is %s %d' | |
_help() | |
{ | |
printf 'usage: %s [--help|-H] [--16] [--256] [-t|--tiny] [--background|-b]\n' "$(basename $0)" | |
exit 0 |
# ANSI escape codes | |
[ANSI escape codes](https://en.wikipedia.org/wiki/ANSI_escape_code) can be printed to a shell to as instructions. | |
The below is a list of codes I have used often in my CLI programs and I find myself looking up over and over again. | |
A great article about it can be found [here](https://www.lihaoyi.com/post/BuildyourownCommandLinewithANSIescapecodes.html). | |
## Content | |
- [Colors](#colors) |
#!/usr/bin/env fish | |
# similar script in Fish | |
# still under construction, need to quiet `git status` more effectively | |
function update -d 'Update git repo' | |
git stash --quiet | |
git pull | |
git stash apply --quiet | |
end |
# Follow | |
# https://geek-cookbook.funkypenguin.co.nz | |
# for an updated version | |
version: '3.7' | |
services: | |
traefik_v2.0: | |
image: 'traefik:2.2' | |
container_name: traefik_v2 | |
hostname: traefik_v2 |
#!/bin/bash | |
# Simple script for setting an alarm on Mac OS X | |
# Arguments are ./alarm.sh {hour} {minute} | |
until [ `date "+%H"` -eq $1 ] && [ `date "+%M"` -eq $2 ]; do | |
sleep 10 | |
done | |
osascript -e 'set volume 7' |