all repos — dotfiles @ 93a777fae32530c3c0068d0840b648a0064e50d5

my *nix dotfiles

bin/time.sh (view raw)

 1#!/usr/bin/env bash
 2
 3fg="$(xres color0)"
 4light="$(xres color8)"
 5
 6date="%{F$light}time %{F$fg}$(date +%I:%M)"
 7time="%{F$light}date %{F$fg}$(date +"%a, %d %b" | tr A-Z a-z)"
 8
 9while getopts dt options
10do
11	case $options in
12		d)
13			echo -ne "$date"
14			;;
15		t)
16			echo -ne "$time"
17	esac
18done