mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-22 23:53:48 +01:00
Merge branch 'dev' of github.com:danielyxie/bitburner into dev
This commit is contained in:
commit
321579c6cb
@ -335,7 +335,7 @@ Then to kill this script the same arguments would have to be used::
|
|||||||
|
|
||||||
$ kill foo.script 50e3 sigma-cosmetics
|
$ kill foo.script 50e3 sigma-cosmetics
|
||||||
|
|
||||||
If you are killing the script using its PID, then the PID argument must be numeric.
|
If you are killing the script using its PID, then the PID argument must be numeric.
|
||||||
|
|
||||||
killall
|
killall
|
||||||
^^^^^^^
|
^^^^^^^
|
||||||
@ -542,28 +542,6 @@ Then in order to check its logs with 'tail' the same arguments must be used::
|
|||||||
|
|
||||||
$ tail foo.script 10 50000
|
$ tail foo.script 10 50000
|
||||||
|
|
||||||
theme
|
|
||||||
^^^^^
|
|
||||||
|
|
||||||
$ theme [preset] | [#background #text #highlight]
|
|
||||||
|
|
||||||
Change the color of the game's user interface
|
|
||||||
|
|
||||||
This command can be called with a preset theme. Currently, the supported presets are:
|
|
||||||
|
|
||||||
* default
|
|
||||||
* muted
|
|
||||||
* solarized
|
|
||||||
|
|
||||||
However, you can also specify your own color scheme using hex values.
|
|
||||||
To do so, you must specify three hex color values for the background
|
|
||||||
color, the text color, and the highlight color. These hex values must
|
|
||||||
be preceded by a pound sign (#) and must be either 3 or 6 digits. Example::
|
|
||||||
|
|
||||||
$ theme #ffffff #385 #235012
|
|
||||||
|
|
||||||
A color picker such as Google's can be used to get your desired hex color values
|
|
||||||
|
|
||||||
top
|
top
|
||||||
^^^
|
^^^
|
||||||
|
|
||||||
|
@ -1703,7 +1703,7 @@ function initAugmentations(): void {
|
|||||||
"The left arm of a legendary BitRunner who ascended beyond this world. " +
|
"The left arm of a legendary BitRunner who ascended beyond this world. " +
|
||||||
"It projects a light blue energy shield that protects the exposed inner parts. " +
|
"It projects a light blue energy shield that protects the exposed inner parts. " +
|
||||||
"Even though it contains no weapons, the advanced tungsten titanium " +
|
"Even though it contains no weapons, the advanced tungsten titanium " +
|
||||||
"alloy increases the users strength to unbelievable levels. The augmentation " +
|
"alloy increases the user's strength to unbelievable levels. The augmentation " +
|
||||||
"gets more powerful over time for seemingly no reason.",
|
"gets more powerful over time for seemingly no reason.",
|
||||||
strength_mult: 2.7,
|
strength_mult: 2.7,
|
||||||
});
|
});
|
||||||
|
@ -232,7 +232,7 @@ export function Root(props: IProps): React.ReactElement {
|
|||||||
MonacoVim.VimMode.Vim.mapCommand("gT", "action", "prevTabs", {}, { context: "normal" });
|
MonacoVim.VimMode.Vim.mapCommand("gT", "action", "prevTabs", {}, { context: "normal" });
|
||||||
editor.focus();
|
editor.focus();
|
||||||
});
|
});
|
||||||
} catch {}
|
} catch { }
|
||||||
} else if (!options.vim) {
|
} else if (!options.vim) {
|
||||||
// Whem vim mode is disabled
|
// Whem vim mode is disabled
|
||||||
vimEditor?.dispose();
|
vimEditor?.dispose();
|
||||||
@ -478,7 +478,7 @@ export function Root(props: IProps): React.ReactElement {
|
|||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
infLoop(newCode);
|
infLoop(newCode);
|
||||||
} catch (err) {}
|
} catch (err) { }
|
||||||
}
|
}
|
||||||
|
|
||||||
function saveScript(scriptToSave: OpenScript): void {
|
function saveScript(scriptToSave: OpenScript): void {
|
||||||
@ -829,15 +829,15 @@ export function Root(props: IProps): React.ReactElement {
|
|||||||
maxHeight: "38.5px",
|
maxHeight: "38.5px",
|
||||||
...(currentScript?.fileName === openScripts[index].fileName
|
...(currentScript?.fileName === openScripts[index].fileName
|
||||||
? {
|
? {
|
||||||
background: Settings.theme.button,
|
background: Settings.theme.button,
|
||||||
borderColor: Settings.theme.button,
|
borderColor: Settings.theme.button,
|
||||||
color: Settings.theme.primary,
|
color: Settings.theme.primary,
|
||||||
}
|
}
|
||||||
: {
|
: {
|
||||||
background: Settings.theme.backgroundsecondary,
|
background: Settings.theme.backgroundsecondary,
|
||||||
borderColor: Settings.theme.backgroundsecondary,
|
borderColor: Settings.theme.backgroundsecondary,
|
||||||
color: Settings.theme.secondary,
|
color: Settings.theme.secondary,
|
||||||
}),
|
}),
|
||||||
};
|
};
|
||||||
|
|
||||||
const scriptTabText = `${hostname}:~/${fileName} ${dirty(index)}`;
|
const scriptTabText = `${hostname}:~/${fileName} ${dirty(index)}`;
|
||||||
@ -870,18 +870,19 @@ export function Root(props: IProps): React.ReactElement {
|
|||||||
}}
|
}}
|
||||||
style={{
|
style={{
|
||||||
maxWidth: `${tabTextWidth}px`,
|
maxWidth: `${tabTextWidth}px`,
|
||||||
|
minHeight: '38.5px',
|
||||||
overflow: "hidden",
|
overflow: "hidden",
|
||||||
...(currentScript?.fileName === openScripts[index].fileName
|
...(currentScript?.fileName === openScripts[index].fileName
|
||||||
? {
|
? {
|
||||||
background: Settings.theme.button,
|
background: Settings.theme.button,
|
||||||
borderColor: Settings.theme.button,
|
borderColor: Settings.theme.button,
|
||||||
color: Settings.theme.primary,
|
color: Settings.theme.primary,
|
||||||
}
|
}
|
||||||
: {
|
: {
|
||||||
background: Settings.theme.backgroundsecondary,
|
background: Settings.theme.backgroundsecondary,
|
||||||
borderColor: Settings.theme.backgroundsecondary,
|
borderColor: Settings.theme.backgroundsecondary,
|
||||||
color: Settings.theme.secondary,
|
color: Settings.theme.secondary,
|
||||||
}),
|
}),
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<span style={{ overflow: "hidden", direction: "rtl", textOverflow: "ellipsis" }}>
|
<span style={{ overflow: "hidden", direction: "rtl", textOverflow: "ellipsis" }}>
|
||||||
|
Loading…
Reference in New Issue
Block a user