go-ttrss

incomplete CLI interface to manage your TTRSS account
git clone https://git.e1e0.net/go-ttrss.git
Log | Files | Refs | README

commit 0a7fc6ffac73cf51271ddc4906323a359af24aa3
parent b867a53716e335065e0dcf8a6d0682eaebb13a07
Author: Paco Esteban <paco@e1e0.net>
Date:   Sat,  1 Aug 2020 18:01:33 +0200

improve view of category and feed listings

Diffstat:
Mcmd/ttrss-cli/main.go | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/cmd/ttrss-cli/main.go b/cmd/ttrss-cli/main.go @@ -55,7 +55,7 @@ func main() { } for _, feed := range feeds { - fmt.Printf("(%d)\t%s \n", feed.Id, feed.Title) + fmt.Printf("(%5d)\t%s \n", feed.Id, feed.Title) } return nil }, @@ -71,7 +71,7 @@ func main() { } for _, cat := range categories { - fmt.Printf("(%d) %s \n", cat.Id, cat.Title) + fmt.Printf("(%5d)\t%s \n", cat.Id, cat.Title) } return nil },