all repos — dotfiles @ c313a6a2ae90878d9ab373dec274fa9041d83c98

my *nix dotfiles

bin/time.sh (view raw)

 1#!/usr/bin/env bash
 2
 3fg="$(xres color15)"
 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