Installing on Linux
AppFlowy currently does not have a formal Linux installation process. However, the application can quickly and easily be installed by the end user.
Note: AppFlowy requires glibc >= 2.32 however this version is not yet available in some common linux distributions. For the record, glibc 2.33 is available on Debian testing and Ubuntu 21.04:
Note: The following steps have been verified on the following Linux distributions:
Any Linux distribution not listed here has not been tested, and the following steps may not work. If you are trying to install AppFlowy on a Linux distribution not listed here, let us know how it went so that we can add it to the list or fix any bugs that may occur.
Steps to install AppFlowy on Linux
Download the latest archive file from the Releases page.
Extract the archive in a location of your choice (e.g.
/opt/).note: Performing read/write operations in folders such as
/optmay require root access. If a command fails due to missing permissions, try running it as the root user (this may be done by switching to the root user or using programs such as sudo and doas).note: The application will be extracted into a folder named AppFlowy.
tar -xzvf AppFlowy-linux-x86.tar.gzGo to the AppFlowy directory.
cd AppFlowyRun the application.
./app_flowyEmoji Font Installation
AppFlowy will look for the Noto Color Emoji font on your system when trying to display emoji unicode characters. Please make sure that the font is configured so that emoji characters are displayed correctly.
note: Certain distributions (e.g. Fedora Linux) already have this set up by default. In that case, you can safely ignore this section.
Install the the font:
On Arch and Manjaro Linux, install
noto-fonts-emojiusing pacman.On Ubuntu Linux and Linux Mint, install
fonts-noto-color-emojiusing apt.
Configure the font:
First, run
fc-cache -vto reload the system font cache.Then, create a file in
/etc/fonts/local.confwith root privileges or~/.config/fontconfig/fonts.confwith the following content:
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<alias>
<family>sans-serif</family>
<prefer>
<family>Sans</family>
<family>Noto Color Emoji</family>
</prefer>
</alias>
<alias>
<family>serif</family>
<prefer>
<family>Serif</family>
<family>Noto Color Emoji</family>
</prefer>
</alias>
<alias>
<family>monospace</family>
<prefer>
<family>Monospace</family>
<family>Noto Color Emoji</family>
</prefer>
</alias>
</fontconfig>Log out and log back in, or reboot to see your changes.
Optional steps to add AppFlowy to your system menu
The current documentation may be out of sync with the development.
Adding an application to Linux's system menu requires some extra steps. In the steps below we assume that you have extracted the archive file contents into the /opt/ directory and that your present working directory is /opt/AppFlowy.
Add a Linux desktop file to your system
Rename the icon file.
mv flowylogo.svg app_flowy.svgCopy the icon file so that the system will pick it up.
cp app_flowy.svg ~/.local/share/iconsCopy the temporary desktop file to a usable Linux desktop file. Notice the underscore in
app_flowy.
cp appflowy.desktop.temp app_flowy.desktopEdit the following lines in the
appflowy.desktopfile so that they point to the correct files.
Icon=[CHANGE_THIS]/AppFlowy/flowy_logo.svg
Exec=[CHANGE_THIS]/AppFlowy/app_flowyFor example, if you installed in /opt, this becomes:
Icon=app_flowy.svg
Exec=/opt/AppFlowy/app_flowyMove the desktop file so that the system will pick it up.
mv app_flowy.desktop ~/.local/share/applicationsLast updated
Was this helpful?

