mirror of
https://github.com/xpipe-io/xpipe.git
synced 2026-05-03 19:30:31 +00:00
Small linux fixes
This commit is contained in:
@@ -8,7 +8,7 @@ public class AppFontCheck {
|
||||
try {
|
||||
Font.getDefault();
|
||||
} catch (Throwable t) {
|
||||
throw new IllegalStateException("Unable to load any fonts. Check whether your system is properly configured with fontconfig", t);
|
||||
throw new IllegalStateException("Unable to load any fonts. Check whether your system is properly configured with fontconfig and you have any fonts installed", t);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -26,6 +26,8 @@ public class TerminalErrorHandler extends GuiErrorHandlerBase implements ErrorHa
|
||||
handleWithSecondaryException(event, throwable);
|
||||
ErrorAction.ignore().handle(event);
|
||||
})) {
|
||||
// Exit if we couldn't initialize the GUI
|
||||
OperationMode.halt(1);
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
+3
-1
@@ -127,8 +127,10 @@ install() {
|
||||
case "$uname_str" in
|
||||
Linux)
|
||||
if [ -f "/etc/debian_version" ]; then
|
||||
DEBIAN_FRONTEND=noninteractive sudo apt-get install -qy "$file"
|
||||
info "Installing file $file with apt"
|
||||
DEBIAN_FRONTEND=noninteractive sudo apt install -qy "$file"
|
||||
else
|
||||
info "Installing file $file with rpm"
|
||||
sudo rpm -i "$file"
|
||||
fi
|
||||
;;
|
||||
|
||||
Reference in New Issue
Block a user