Skip to content

Commit

Permalink
added btop
Browse files Browse the repository at this point in the history
  • Loading branch information
rsteube committed Jan 11, 2025
1 parent d80e829 commit 8444ceb
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
30 changes: 30 additions & 0 deletions completers/btop_completer/cmd/root.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
package cmd

import (
"github.com/carapace-sh/carapace"
"github.com/spf13/cobra"
)

var rootCmd = &cobra.Command{
Use: "btop",
Short: "A monitor of resources",
Long: "https://github.com/aristocratos/btop",
Run: func(cmd *cobra.Command, args []string) {},
}

func Execute() error {
return rootCmd.Execute()
}
func init() {
carapace.Gen(rootCmd).Standalone()

rootCmd.Flags().Bool("debug", false, "start in DEBUG mode")
rootCmd.Flags().BoolP("help", "h", false, "show this help message and exit")
rootCmd.Flags().BoolP("low-color", "lc", false, "disable truecolor")
rootCmd.Flags().StringP("preset", "p", "", "start with preset")
rootCmd.Flags().Bool("tty_off", false, "force (OFF) tty mode")
rootCmd.Flags().BoolP("tty_on", "t", false, "force (ON) tty mode")
rootCmd.Flags().StringP("update", "u", "", "set the program update rate in milliseconds")
rootCmd.Flags().Bool("utf-force", false, "force start even if no UTF-8 locale was detected")
rootCmd.Flags().BoolP("version", "v", false, "show version info and exit")
}
7 changes: 7 additions & 0 deletions completers/btop_completer/main.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package main

import "github.com/carapace-sh/carapace-bin/completers/btop_completer/cmd"

func main() {
cmd.Execute()
}

0 comments on commit 8444ceb

Please sign in to comment.