help
This commit is contained in:
parent
ac3d352816
commit
f1e6177d77
1 changed files with 3 additions and 2 deletions
|
@ -212,10 +212,11 @@ function Bar(monitor = 0) {
|
||||||
}
|
}
|
||||||
|
|
||||||
var hostname = Utils.exec("cat /etc/hostname");
|
var hostname = Utils.exec("cat /etc/hostname");
|
||||||
|
var hosts = ["sakotop", "sakopc"];
|
||||||
|
|
||||||
addExtraBar: if (hostname === "sakotop") {
|
addExtraBar: if (hostname === hosts[0]) {
|
||||||
break addExtraBar;
|
break addExtraBar;
|
||||||
} else if (hostname === "sakopc") {
|
} else if (hostname === hosts[1]) {
|
||||||
App.addWindow(Bar(1));
|
App.addWindow(Bar(1));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue