1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 23:57:34 +00:00

Everywhere: Move Base/res/terminal-colors to Base/res/color-schemes

This commit is contained in:
implicitfield 2022-12-02 18:11:26 +02:00 committed by Andrew Kaster
parent 534f3faa2f
commit 4aec8491d6
19 changed files with 6 additions and 5 deletions

View file

@ -1218,7 +1218,7 @@ void TerminalWidget::set_color_scheme(StringView name)
"White"sv
};
auto path = DeprecatedString::formatted("/res/terminal-colors/{}.ini", name);
auto path = DeprecatedString::formatted("/res/color-schemes/{}.ini", name);
auto color_config_or_error = Core::ConfigFile::open(path);
if (color_config_or_error.is_error()) {
dbgln("Unable to read color scheme file '{}': {}", path, color_config_or_error.error());