Skip to content

Commit

Permalink
Rearrange maxvol and eq_profile under config subcommand
Browse files Browse the repository at this point in the history
  • Loading branch information
hilli committed Feb 11, 2024
1 parent 78cfcc2 commit f77f0db
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,15 @@ kefw2 off
Backup the current EQ Profile

```shell
kefw2 eq_profile > my_profile.json
kefw2 config eq_profile > my_profile.json
```

Set the max volume limit

```shell
$ kefw2 config maxvol 65
$ kefw2 config maxvol
65
```


Expand Down
2 changes: 1 addition & 1 deletion cmd/kefw2/cmd/eq_profile.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ var eqProfileCmd = &cobra.Command{
}

func init() {
rootCmd.AddCommand(eqProfileCmd)
ConfigCmd.AddCommand(eqProfileCmd)
}
2 changes: 1 addition & 1 deletion cmd/kefw2/cmd/maxvolume.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@ var maxVolumeCmd = &cobra.Command{
}

func init() {
rootCmd.AddCommand(maxVolumeCmd)
ConfigCmd.AddCommand(maxVolumeCmd)
}

0 comments on commit f77f0db

Please sign in to comment.