2023-11-02 04:36:13 -04:00
|
|
|
|
# Troubleshooting
|
|
|
|
|
|
|
|
|
|
## Table of Contents
|
|
|
|
|
|
|
|
|
|
- [Linux](#linux)
|
|
|
|
|
- [Fonts showing up as rectangles](#linux-fonts-rectangle)
|
|
|
|
|
- [Global menu workaround for KDE](#linux-kde-global-menu)
|
|
|
|
|
- [macOS](#macos)
|
|
|
|
|
- [App can't be opened because Apple cannot check it for malicious software](#macos-unidentified-developer)
|
|
|
|
|
- ["VSCodium.app" is damaged and can’t be opened. You should move it to the Bin](#macos-quarantine)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## <a id="linux"></a>Linux
|
|
|
|
|
|
|
|
|
|
#### <a id="linux-fonts-rectangle"></a>*Fonts showing up as rectangles*
|
|
|
|
|
|
|
|
|
|
The following command should help:
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
rm -rf ~/.cache/fontconfig
|
|
|
|
|
rm -rf ~/snap/codium/common/.cache
|
|
|
|
|
fc-cache -r
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
#### <a id="linux-kde-global-menu"></a>*Global menu workaround for KDE*
|
|
|
|
|
|
|
|
|
|
Install these packages on Fedora:
|
|
|
|
|
|
|
|
|
|
* libdbusmenu-devel
|
|
|
|
|
* dbus-glib-devel
|
|
|
|
|
* libdbusmenu
|
|
|
|
|
|
2023-11-07 13:20:49 -05:00
|
|
|
|
On Ubuntu this package is called `libdbusmenu-glib4`.
|
2023-11-02 04:36:13 -04:00
|
|
|
|
|
|
|
|
|
Credits: [Gerson](https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/-/issues/91)
|
|
|
|
|
|
|
|
|
|
## <a id="macos"></a>macOS
|
|
|
|
|
|
2023-11-07 13:20:49 -05:00
|
|
|
|
Since the App is signed with a self-signed certificate, on the first launch, you might see the following messages:
|
2023-11-02 04:36:13 -04:00
|
|
|
|
|
|
|
|
|
#### <a id="macos-unidentified-developer"></a>*App can't be opened because Apple cannot check it for malicious software*
|
|
|
|
|
|
|
|
|
|
You can right-click the App and choose `Open`.
|
|
|
|
|
|
|
|
|
|
#### <a id="macos-quarantine"></a>*"VSCodium.app" is damaged and can’t be opened. You should move it to the Bin.*
|
|
|
|
|
|
|
|
|
|
The following command will remove the quarantine attribute.
|
|
|
|
|
|
|
|
|
|
```
|
|
|
|
|
xattr -r -d com.apple.quarantine /Applications/VSCodium.app
|
|
|
|
|
```
|