mirror of
https://github.com/aristocratos/btop.git
synced 2026-01-25 22:38:41 -05:00
Updated Prerequisites
This commit is contained in:
@@ -124,6 +124,7 @@ Also needs a UTF8 locale and a font that covers:
|
||||
* Unicode Block “Braille Patterns” U+2800 - U+28FF (Not needed in TTY mode or with graphs set to type: block or tty.)
|
||||
* Unicode Block “Geometric Shapes” U+25A0 - U+25FF
|
||||
* Unicode Block "Box Drawing" and "Block Elements" U+2500 - U+259F
|
||||
* Unicode Block "General punctuation" U+2005
|
||||
|
||||
### **Notice (Text rendering issues)**
|
||||
|
||||
|
||||
@@ -339,7 +339,8 @@ namespace Tools {
|
||||
for (string readstr; getline(file, readstr); out += readstr);
|
||||
}
|
||||
catch (const std::exception& e) {
|
||||
throw std::runtime_error("readfile() : Exception when reading " + (string)path + " : " + e.what());
|
||||
Logger::error("readfile() : Exception when reading " + (string)path + " : " + e.what());
|
||||
return fallback;
|
||||
}
|
||||
return (out.empty() ? fallback : out);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user