53 lines
1.5 KiB
Go
53 lines
1.5 KiB
Go
// Copyright © 2017 Darko Luketic <info@icod.de>
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package cmd
|
|
|
|
import (
|
|
"os/exec"
|
|
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
// onCmd represents the on command
|
|
var onCmd = &cobra.Command{
|
|
Use: "on",
|
|
Short: "turns on wifi hotspot",
|
|
Long: `turns on wifi hotspot`,
|
|
RunE: func(cmd *cobra.Command, args []string) error {
|
|
if e := exec.Command("nmcli", "radio", "wifi", "on").Run(); e != nil {
|
|
return e
|
|
}
|
|
if e := exec.Command("nmcli", "connection", "up", "Hotspot", "ifname", "wlp2s0").Run(); e != nil {
|
|
return e
|
|
}
|
|
return nil
|
|
},
|
|
}
|
|
|
|
func init() {
|
|
RootCmd.AddCommand(onCmd)
|
|
|
|
// Here you will define your flags and configuration settings.
|
|
|
|
// Cobra supports Persistent Flags which will work for this command
|
|
// and all subcommands, e.g.:
|
|
// onCmd.PersistentFlags().String("foo", "", "A help for foo")
|
|
|
|
// Cobra supports local flags which will only run when this command
|
|
// is called directly, e.g.:
|
|
// onCmd.Flags().BoolP("toggle", "t", false, "Help message for toggle")
|
|
|
|
}
|