summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/main.go b/main.go
index 252fa18..d9985b1 100644
--- a/main.go
+++ b/main.go
@@ -23,7 +23,6 @@ import (
"os"
"path/filepath"
- "github.com/majewsky/gofu/internal/i3status"
"github.com/majewsky/gofu/internal/prompt"
"github.com/majewsky/gofu/internal/rtree"
)
@@ -47,8 +46,6 @@ func execApplet(applet string, args []string, allowGofu bool) int {
return prompt.Exec(args)
case "rtree":
return rtree.Exec(args)
- case "i3status":
- return i3status.Exec(args)
default:
fmt.Fprintln(os.Stderr, "ERROR: unknown applet: "+applet)
return 255