-
-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2677 from carapace-sh/add-btop
added btop
- Loading branch information
Showing
2 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() | ||
} |