update plugin documentation

pull/128/head
Erich Smith 2012-05-09 09:27:10 -04:00
parent 635c380a91
commit 3f8fe6157c
3 changed files with 38 additions and 47 deletions

View File

@ -6,6 +6,9 @@
# #
# [issue 108]: https://github.com/revans/bash-it/issues/108 # [issue 108]: https://github.com/revans/bash-it/issues/108
cite about-plugin
about-plugin 'automatically set your xterm title with host and location info'
set_xterm_title () { set_xterm_title () {
local title="$1" local title="$1"
echo -ne "\e]0;$title\007" echo -ne "\e]0;$title\007"

View File

@ -1,11 +1,17 @@
#!/usr/bin/env bash #!/usr/bin/env bash
cite about-plugin
about-plugin query and display info about your battery charge level
battery_percentage(){ battery_percentage(){
about 'displays battery charge as a percentage of full (100%)'
group battery
if command_exists acpi; if command_exists acpi;
then then
local ACPI_OUTPUT=$(acpi -b) local ACPI_OUTPUT=$(acpi -b)
case $ACPI_OUTPUT in case $ACPI_OUTPUT in
*" Unknown"*) *" Unknown"*)
local PERC_OUTPUT=$(echo $ACPI_OUTPUT | head -c 22 | tail -c 2) local PERC_OUTPUT=$(echo $ACPI_OUTPUT | head -c 22 | tail -c 2)
case $PERC_OUTPUT in case $PERC_OUTPUT in
*%) *%)
@ -16,7 +22,7 @@ battery_percentage(){
;; ;;
esac esac
;; ;;
*" Discharging"*) *" Discharging"*)
local PERC_OUTPUT=$(echo $ACPI_OUTPUT | head -c 26 | tail -c 2) local PERC_OUTPUT=$(echo $ACPI_OUTPUT | head -c 26 | tail -c 2)
case $PERC_OUTPUT in case $PERC_OUTPUT in
*%) *%)
@ -27,7 +33,7 @@ battery_percentage(){
;; ;;
esac esac
;; ;;
*" Charging"*) *" Charging"*)
local PERC_OUTPUT=$(echo $ACPI_OUTPUT | head -c 23 | tail -c 2) local PERC_OUTPUT=$(echo $ACPI_OUTPUT | head -c 23 | tail -c 2)
case $PERC_OUTPUT in case $PERC_OUTPUT in
*%) *%)
@ -38,7 +44,7 @@ battery_percentage(){
;; ;;
esac esac
;; ;;
*" Full"*) *" Full"*)
echo '99' echo '99'
;; ;;
*) *)
@ -52,7 +58,7 @@ battery_percentage(){
#local IOREG_OUTPUT_10_5=$(ioreg -l | grep -i capacity | grep -v Legacy| tr '\n' ' | ' | awk '{printf("%.2f%%", $14/$7 * 100)}') #local IOREG_OUTPUT_10_5=$(ioreg -l | grep -i capacity | grep -v Legacy| tr '\n' ' | ' | awk '{printf("%.2f%%", $14/$7 * 100)}')
local IOREG_OUTPUT=$(ioreg -n AppleSmartBattery -r | awk '$1~/Capacity/{c[$1]=$3} END{OFMT="%.2f%%"; max=c["\"MaxCapacity\""]; print (max>0? 100*c["\"CurrentCapacity\""]/max: "?")}') local IOREG_OUTPUT=$(ioreg -n AppleSmartBattery -r | awk '$1~/Capacity/{c[$1]=$3} END{OFMT="%.2f%%"; max=c["\"MaxCapacity\""]; print (max>0? 100*c["\"CurrentCapacity\""]/max: "?")}')
case $IOREG_OUTPUT in case $IOREG_OUTPUT in
100*) 100*)
echo '99' echo '99'
;; ;;
*) *)
@ -65,6 +71,9 @@ battery_percentage(){
} }
battery_charge(){ battery_charge(){
about graphical display of your battery charge
group battery
# Full char # Full char
local F_C='▸' local F_C='▸'
# Depleted char # Depleted char

View File

@ -1,42 +1,34 @@
# based on https://gist.github.com/318247 # based on https://gist.github.com/318247
# Usage: browser cite about-plugin
# pipe html to a browser about-plugin 'render commandline output in your browser'
# e.g.
# $ echo "<h1>hi mom!</h1>" | browser
# $ ron -5 man/rip.5.ron | browser
function browser() { function browser() {
about pipe html to a browser
example '$ echo "<h1>hi mom!</h1>" | browser'
example '$ ron -5 man/rip.5.ron | browser'
group browser
if [ -t 0 ]; then if [ -t 0 ]; then
if [ -n "$1" ]; then if [ -n "$1" ]; then
open $1 open $1
else else
cat <<usage reference browser
Usage: browser fi
pipe html to a browser
$ echo '<h1>hi mom!</h1>' | browser
$ ron -5 man/rip.5.ron | browser
usage
fi
else else
f="/tmp/browser.$RANDOM.html" f="/tmp/browser.$RANDOM.html"
cat /dev/stdin > $f cat /dev/stdin > $f
open $f open $f
fi fi
} }
# pipe hot spicy interwebs into textmate and cleanup!
#
# Usage: wmate
# wget into a pipe into TextMate and force Tidy (you can undo in textmate)
# e.g.
# $ wmate google.com
function wmate() { function wmate() {
about 'pipe hot spicy interwebs into textmate and cleanup!'
example '$ wmate google.com'
group browser
if [ -t 0 ]; then if [ -t 0 ]; then
if [ -n "$1" ]; then if [ -n "$1" ]; then
wget -qO- $1 | /usr/bin/mate wget -qO- $1 | /usr/bin/mate
@ -64,34 +56,21 @@ end tell
EOT` EOT`
else else
cat <<usage reference wmate
Usage: wmate google.com
wget into a pipe into TextMate and force Tidy (you can undo in textmate)
$ wmate google.com
usage
fi fi
fi fi
} }
#
# Usage: raw google.com
# wget into a temp file and pump it into your browser
#
# e.g.
# $ raw google.com
function raw() { function raw() {
about 'write wget into a temp file and pump it into your browser'
example '$ raw google.com'
group browser
if [ -t 0 ]; then if [ -t 0 ]; then
if [ -n "$1" ]; then if [ -n "$1" ]; then
wget -qO- $1 | browser wget -qO- $1 | browser
else else
cat <<usage reference raw
Usage: raw google.com fi
wget into a temp file and pump it into your browser
$ raw google.com
usage
fi
fi fi
} }