summaryrefslogtreecommitdiff
path: root/dateModule.go
diff options
context:
space:
mode:
Diffstat (limited to 'dateModule.go')
-rw-r--r--dateModule.go17
1 files changed, 0 insertions, 17 deletions
diff --git a/dateModule.go b/dateModule.go
deleted file mode 100644
index 1fe60fa..0000000
--- a/dateModule.go
+++ /dev/null
@@ -1,17 +0,0 @@
-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
-}