Skip to content

Commit

Permalink
override carrier text. close #8
Browse files Browse the repository at this point in the history
  • Loading branch information
jessesquires committed Apr 12, 2020
1 parent b3a7541 commit 90a1668
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ The changelog for `Nine41`. Also see the [releases](https://github.com/jessesqui

- Setup Danger for project ([#9](https://github.com/jessesquires/Nine41/issues/9), [@jessesquires](https://github.com/jessesquires))

- Override the operator (carrier) name to be the empty string ([#8](https://github.com/jessesquires/Nine41/issues/8), [@jessesquires](https://github.com/jessesquires))

1.0
---

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ However, it has some issues:
* The numerous override options are difficult to remember
* There are no sensible defaults

This script fixes that. It overrides the status bars for all currently running simulators using "Apple's defaults" — full cellular bars, full wifi bars, full battery, and `9:41` for the time.
This script fixes most of those issues. It overrides the status bars for all currently running simulators using "Apple's defaults" — full cellular bars, full wifi bars, full battery, no "carrier" name, and `9:41` for the time.

## Requirements

Expand Down
3 changes: 2 additions & 1 deletion Sources/main.swift
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ extension Process {
"--cellularMode", "active",
"--cellularBars", "4",
"--batteryState", "charged",
"--batteryLevel", "100"
"--batteryLevel", "100",
"--operatorName", " "
)
}
}
Expand Down

0 comments on commit 90a1668

Please sign in to comment.