From e4c64e14abd293c97fc5df03140210b829b31f6b Mon Sep 17 00:00:00 2001 From: raziman Date: Sun, 26 Jul 2020 00:08:45 +0800 Subject: [PATCH] add emoji --- playlist.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/playlist.go b/playlist.go index 17f3e27..2546dd7 100644 --- a/playlist.go +++ b/playlist.go @@ -725,6 +725,7 @@ func populate(root *tview.TreeNode, rootPath string) error { } child.SetReference(audioFile) + child.SetText(fmt.Sprintf("🎵 %s", songName)) root.AddChild(child) } @@ -739,6 +740,7 @@ func populate(root *tview.TreeNode, rootPath string) error { } child.SetReference(audioFile) child.SetColor(gomu.accentColor) + child.SetText(fmt.Sprintf("📁 %s", songName)) root.AddChild(child) populate(child, path)