-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspaces-primary.jsx
54 lines (49 loc) · 1.17 KB
/
spaces-primary.jsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import Desktop from "./lib/Desktop.jsx";
import Error from "./lib/Error.jsx";
import parse from "./lib/parse.jsx";
import styles from "./lib/styles.jsx";
const style = {
padding: "0 12px",
display: "grid",
gridAutoFlow: "column",
gridGap: "16px",
position: "fixed",
overflow: "hidden",
left: "0px",
bottom: "0px",
fontFamily: styles.fontFamily,
lineHeight: styles.lineHeight,
fontWeight: styles.fontWeight,
fontSize: styles.fontSize,
color: styles.colors.dim
};
export const refreshFrequency = false;
export const command = "./nibar/scripts/spaces-primary.sh";
export const render = ({ output }) => {
const data = parse(output);
if (typeof data === "undefined") {
return (
<div style={style}>
<Error msg="Error: unknown script output" side="left" />
</div>
);
}
if (typeof data.error !== "undefined") {
return (
<div style={style}>
<Error msg={`Error: ${data.error}`} side="left" />
</div>
);
}
if (typeof data !== "undefined") {
return (
<div style={style}>
<Desktop output={data.desktop} />
</div>
);
}
return (
<div style={style}></div>
)
};
export default null;