mirror of
https://github.com/rsteube/carapace-bin.git
synced 2025-05-05 15:32:53 +00:00
added btop
This commit is contained in:
parent
d80e829d38
commit
8444cebc72
30
completers/btop_completer/cmd/root.go
Normal file
30
completers/btop_completer/cmd/root.go
Normal file
@ -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
completers/btop_completer/main.go
Normal file
7
completers/btop_completer/main.go
Normal file
@ -0,0 +1,7 @@
|
||||
package main
|
||||
|
||||
import "github.com/carapace-sh/carapace-bin/completers/btop_completer/cmd"
|
||||
|
||||
func main() {
|
||||
cmd.Execute()
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user