betterdisplaycli 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/CI.yaml +2 -1
- package/package.json +1 -1
- package/src/get.ts +1 -1
- package/src/index.ts +1 -1
package/package.json
CHANGED
package/src/get.ts
CHANGED
|
@@ -36,7 +36,7 @@ export async function getAllDevices(options?: {
|
|
|
36
36
|
});
|
|
37
37
|
}
|
|
38
38
|
|
|
39
|
-
export async function
|
|
39
|
+
export async function connectAllDisplays(): Promise<void> {
|
|
40
40
|
await new PrintableShellCommand("betterdisplaycli", [
|
|
41
41
|
["perform", "--connectAllDisplays"],
|
|
42
42
|
])
|
package/src/index.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export * from "./Device";
|
|
2
|
-
export { connectAllDevices, getAllDevices } from "./get";
|
|
2
|
+
export { connectAllDisplays as connectAllDevices, getAllDevices } from "./get";
|