From 07fc2644a237187dd4c5680e88f4adadbf533603 Mon Sep 17 00:00:00 2001 From: Cody Hiar Date: Wed, 12 Aug 2015 12:06:23 -0600 Subject: Initial commit of the working files --- segments/time.sh | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 segments/time.sh (limited to 'segments/time.sh') diff --git a/segments/time.sh b/segments/time.sh new file mode 100755 index 0000000..e307399 --- /dev/null +++ b/segments/time.sh @@ -0,0 +1,23 @@ +# Prints the current time. + +TMUX_POWERLINE_SEG_TIME_FORMAT_DEFAULT="%H:%M" + +generate_segmentrc() { + read -d '' rccontents << EORC +# date(1) format for the time. Americans might want to have "%I:%M %p". +export TMUX_POWERLINE_SEG_TIME_FORMAT="${TMUX_POWERLINE_SEG_TIME_FORMAT_DEFAULT}" +EORC + echo "$rccontents" +} + +__process_settings() { + if [ -z "$TMUX_POWERLINE_SEG_TIME_FORMAT" ]; then + export TMUX_POWERLINE_SEG_TIME_FORMAT="${TMUX_POWERLINE_SEG_TIME_FORMAT_DEFAULT}" + fi +} + +run_segment() { + __process_settings + date +"$TMUX_POWERLINE_SEG_TIME_FORMAT" + return 0 +} -- cgit v1.2.3