summaryrefslogtreecommitdiff
path: root/dateModule.go
blob: 1fe60fa6158026b0a15a8f28cf67e236a256d108 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package main

import (
	"fmt"
	"strconv"
	"time"
)

type DateModule struct {
}

// getDate formats a string for the status bar
func (_ DateModule) GetInfo() (string, error) {
	now := time.Now()
	// return now.Weekday().String() + " " + now.Month().String()[0:3] + " " + now.Year(), nil
	return fmt.Sprintf("%s %s %s %s", now.Weekday(), now.Month().String()[0:3], strconv.Itoa(now.Day()), strconv.Itoa(now.Year())), nil
}