blob: e2923d18abd2aa09b3b4128a96d5d25587aa9973 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import * as Uebersicht from "uebersicht";
import * as Settings from "./settings";
import * as Utils from "./utils";
/**
* Retrieves the current mode by executing a shell script and parsing its output.
*
* @returns {Promise<Object> | undefined} A promise that resolves to the parsed JSON object representing the mode.
*/
export async function getMode() {
const settings = Settings.get();
const { shell } = settings.global;
const mode = await Uebersicht.run(
`cat $(${shell} ./simple-bar/lib/scripts/yabai-set-mode-server.sh --query 2>&1)`,
);
return Utils.parseJson(mode);
}
|