Open your terminal.
In the root directory run the command:
sudo nano /etc/bluetooth/main.conf
func consoleSize() (int, int) { | |
cmd := exec.Command("stty", "size") | |
cmd.Stdin = os.Stdin | |
out, err := cmd.Output() | |
if err != nil { | |
log.Fatal(err) | |
} | |
s := string(out) |