--- title: Chapter 8. Desktop Environments part: Part II. Common Tasks prev: books/handbook/partii next: books/handbook/multimedia description: This chapter demonstrates how to install numerous desktop environments, including web browsers, productivity software, document viewers, and financial software tags: ["desktop", "KDE Plasma", "GNOME", "XFCE", "MATE", "Cinnamon", "LXQT", "browsers", "Firefox", "Chromium", "Iridium", "Falkon", "Konqueror", "Epiphany", "qutebrowser", "Dillo", "Links", "w3m", "Development tools", "Visual Studio Code", "Qt Creator", "Kdevelop", "Eclipse IDE", "Vim", "Neovim", "GNU Emacs", "Productivity", "LibreOffice", "Calligra", "AbiWord", "Viewers", "Okular", "Evince", "ePDFView", "Xpdf", "Finance", "KMyMoney", "GnuCash"] showBookMenu: true weight: 11 path: "/books/handbook/desktop/" --- [[desktop]] = Desktop Environments :doctype: book :toc: macro :toclevels: 1 :icons: font :sectnums: :sectnumlevels: 6 :sectnumoffset: 8 :partnums: :source-highlighter: rouge :experimental: :images-path: books/handbook/desktop/ ifdef::env-beastie[] ifdef::backend-html5[] :imagesdir: ../../../../images/{images-path} endif::[] ifndef::book[] include::shared/authors.adoc[] include::shared/mirrors.adoc[] include::shared/releases.adoc[] include::shared/attributes/attributes-{{% lang %}}.adoc[] include::shared/{{% lang %}}/teams.adoc[] include::shared/{{% lang %}}/mailing-lists.adoc[] include::shared/{{% lang %}}/urls.adoc[] toc::[] endif::[] ifdef::backend-pdf,backend-epub3[] include::../../../../../shared/asciidoctor.adoc[] endif::[] endif::[] ifndef::env-beastie[] toc::[] include::../../../../../shared/asciidoctor.adoc[] endif::[] [[desktop-synopsis]] == Synopsis While FreeBSD is popular as a server for its performance and stability, it is also well suited for day-to-day use as a desktop. With over {numports} applications available in the FreeBSD ports tree, it is straightforward to build a customized desktop that can run a wide variety of desktop applications. This chapter demonstrates how to install popular desktop environments as well as desktop applications such as web browsers, productivity software, document viewers, and financial software. Prerequisites: * Readers of this chapter should already understand how to install either the crossref:x11[x11,X Window System] or crossref:wayland[wayland,Wayland] on FreeBSD. * Readers are instructed throughout this chapter to install official packages. Refer to the section on crossref:ports[ports-using,using the ports collection] to build customized packages from ports. [[desktop-environments]] == Desktop Environments This section describes how to install and configure some popular desktop environments on a FreeBSD system. A desktop environment can range from a simple window manager to a complete suite of desktop applications. .Supported desktop environments [options="header", cols="1,1,1"] |=== | Name | License | Package | KDE Plasma | GPL 2.0 or later | x11/kde5 | GNOME | GPL 2.0 or later | x11/gnome | XFCE | GPL, LGPL, BSD | x11-wm/xfce4 | MATE | GPL 2.0, LGPL 2.0 | x11/mate | Cinnamon | GPL 2.0 or later | x11/cinnamon | LXQT | GPL, LGPL | x11-wm/lxqt |=== [[kde-environment]] === KDE Plasma KDE Plasma is an easy-to-use desktop environment. This desktop provides a suite of applications with a consistent look and feel, a standardized menu and toolbars, keybindings, color-schemes, internationalization, and a centralized, dialog-driven desktop configuration. More information on KDE can be found at the link:https://kde.org/[KDE homepage]. For FreeBSD-specific information, consult the link:https://freebsd.kde.org/[FreeBSD homepage at KDE]. [[kde-meta-install]] ==== Install KDE Plasma meta package To install the KDE Plasma meta package with KDE Frameworks, Plasma Desktop and Applications execute: [source,shell] .... # pkg install kde5 .... [[kde-minimal-install]] ==== Minimal KDE Plasma installation To install a minimal KDE Plasma execute: [source,shell] .... # pkg install plasma5-plasma .... [TIP] ==== This installation is *really* minimal. Konsole must be installed separately executing: [source,shell] .... # pkg install konsole .... ==== [[kde-configuration]] ==== Configure KDE Plasma KDE Plasma uses man:dbus-daemon[1] for a message bus and hardware abstraction. This application is automatically installed as a dependency of KDE Plasma. Enable D-BUS service in `/etc/rc.conf` to start at system boot: [source,shell] .... # sysrc dbus_enable="YES" .... To increase messages size execute: [source,shell] .... sysctl net.local.stream.recvspace=65536 sysctl net.local.stream.sendspace=65536 .... [[kde-start]] ==== Start KDE Plasma The preferred KDE Plasma display manager is package:x11/sddm[]. To install package:x11/sddm[], execute: [source,shell] .... # pkg install sddm .... Enable SDDM service in `/etc/rc.conf` to start at system boot: [source,shell] .... # sysrc sddm_enable="YES" .... The keyboard language can be set in SDDM by running the following command (for Spanish, for example): [source,shell] .... # sysrc sddm_lang="es_ES" .... A second method to start KDE Plasma is by manually invoking man:startx[1]. For this to work, the following line is needed in ~/.xinitrc: [source,shell] .... % echo "exec dbus-launch --exit-with-x11 ck-launch-session startplasma-x11" > ~/.xinitrc .... [[gnome-environment]] === GNOME GNOME is a user-friendly desktop environment. It includes a panel for starting applications and displaying status, a desktop, a set of tools and applications, and a set of conventions that make it easy for applications to cooperate and be consistent with each other. [[gnome-meta-install]] ==== Install GNOME meta package To install the GNOME meta package with GNOME Desktop and Applications, execute: [source,shell] .... # pkg install gnome .... [[gnome-minimal-install]] ==== Minimal GNOME installation To install the GNOME-lite meta package with a GNOME desktop slimmed down for only the basics, execute: [source,shell] .... # pkg install gnome-lite .... [[gnome-configuration]] ==== Configure GNOME GNOME requires `/proc` to be mounted. Add this line to `/etc/fstab` to mount this file system automatically during system startup: [.programlisting] .... # Device Mountpoint FStype Options Dump Pass# proc /proc procfs rw 0 0 .... GNOME uses man:dbus-daemon[1] for a message bus and hardware abstraction. This application is automatically installed as a dependency of GNOME. Enable D-BUS service in `/etc/rc.conf` to start at system boot: [source,shell] .... # sysrc dbus_enable="YES" .... [[gnome-start]] ==== Start GNOME GNOME Display Manager is the preferred display manager for GNOME. GDM is installed as part of the GNOME package. Enable GDM in `/etc/rc.conf` to start at system boot: [source,shell] .... # sysrc gdm_enable="YES" .... A second method to start GNOME is by manually invoking man:startx[1]. For this to work, the following line is needed in `~/.xinitrc`: [source,shell] .... % echo "exec gnome-session" > ~/.xinitrc .... [[xfce-environment]] === XFCE XFCE is a desktop environment based on the GTK+, lightweight and provides a simple, efficient, easy-to-use desktop. It is fully configurable, has a main panel with menus, applets, and application launchers, provides a file manager and sound manager, and is themeable. Since it is fast, light, and efficient, it is ideal for older or slower machines with memory limitations. [[xfce-install]] ==== Install XFCE To install the XFCE meta package, execute: [source,shell] .... # pkg install xfce .... [[xfce-configuration]] ==== Configure XFCE XFCE requires `/proc` to be mounted. Add this line to `/etc/fstab` to mount this file system automatically during system startup: [.programlisting] .... # Device Mountpoint FStype Options Dump Pass# proc /proc procfs rw 0 0 .... XFCE uses man:dbus-daemon[1] for a message bus and hardware abstraction. This application is automatically installed as a dependency of XFCE. Enable D-BUS in `/etc/rc.conf` to start at system boot: [source,shell] .... # sysrc dbus_enable="YES" .... [[xfce-start]] ==== Start XFCE package:x11/lightdm[] is a display manager that supports different display technologies and is a good choice as it is very lightweight, requires little memory usage, and has fast performance. To install it, execute: [source,shell] .... # pkg install lightdm lightdm-gtk-greeter .... Enable lightdm in `/etc/rc.conf` to start at system boot: [source,shell] .... # sysrc lightdm_enable="YES" .... A second method to start XFCE is by manually invoking man:startx[1]. For this to work, the following line is needed in `~/.xinitrc`: [source,shell] .... % echo '. /usr/local/etc/xdg/xfce4/xinitrc' > ~/.xinitrc .... [[mate-environment]] === MATE The MATE Desktop Environment is the continuation of GNOME 2. It provides an intuitive and attractive desktop environment using traditional metaphors. [[mate-meta-install]] ==== Install MATE meta package To install the MATE meta package that includes the MATE Desktop with some extra applications such as text editor, archiver manager, etc., execute: [source,shell] .... # pkg install mate .... [[mate-minimal-install]] ==== Minimal MATE installation To install the MATE lite meta package with MATE desktop slimmed down for only the basics, execute: [source,shell] .... # pkg install mate-base .... [[mate-configuration]] ==== Configure MATE MATE requires `/proc` to be mounted. Add this line to `/etc/fstab` to mount this file system automatically during system startup: [.programlisting] .... # Device Mountpoint FStype Options Dump Pass# proc /proc procfs rw 0 0 .... MATE uses man:dbus-daemon[1] for a message bus and hardware abstraction. This application is automatically installed as a dependency of MATE. Enable D-BUS in `/etc/rc.conf` to start at system boot: [source,shell] .... # sysrc dbus_enable="YES" .... [[mate-start]] ==== Start MATE package:x11/lightdm[] is a display manager that supports different display technologies and is a good choice as it is very lightweight, requires little memory usage, and has fast performance. To install it, execute: [source,shell] .... # pkg install lightdm lightdm-gtk-greeter .... Enable lightdm in `/etc/rc.conf` to start at system boot: [source,shell] .... # sysrc lightdm_enable="YES" .... A second method to start MATE is by manually invoking man:startx[1]. For this to work, the following line is needed in `~/.xinitrc`: [source,shell] .... % echo "exec dbus-launch --exit-with-x11 ck-launch-session mate-session" > ~/.xinitrc .... [[cinnamon-environment]] === Cinnamon Cinnamon is a UNIX(R) desktop which provides advanced innovative features and a traditional user experience. The desktop layout is similar to Gnome 2. The underlying technology is forked from Gnome Shell. The emphasis is put on making users feel at home and providing them with an easy to use and comfortable desktop experience. [[cinnamon-install]] ==== Install Cinnamon To install the Cinnamon package, execute: [source,shell] .... # pkg install cinnamon .... [[cinnamon-configuration]] ==== Configure Cinnamon Cinnamon requires `/proc` to be mounted. Add this line to `/etc/fstab` to mount this file system automatically during system startup: [.programlisting] .... # Device Mountpoint FStype Options Dump Pass# proc /proc procfs rw 0 0 .... Cinnamon uses man:dbus-daemon[1] for a message bus and hardware abstraction. This application is automatically installed as a dependency of Cinnamon. Enable D-BUS in `/etc/rc.conf` to start at system boot: [source,shell] .... # sysrc dbus_enable="YES" .... [[cinnamon-start]] ==== Start Cinnamon package:x11/lightdm[] is a display manager that supports different display technologies and is a good choice as it is very lightweight, requires little memory usage, and has fast performance. To install it execute: [source,shell] .... # pkg install lightdm lightdm-gtk-greeter .... Enable lightdm in `/etc/rc.conf` to start at system boot: [source,shell] .... # sysrc lightdm_enable="YES" .... A second method to start Cinnamon is by manually invoking man:startx[1]. For this to work, the following line is needed in `~/.xinitrc`: [source,shell] .... % echo "exec dbus-launch --exit-with-x11 ck-launch-session cinnamon-session" > ~/.xinitrc .... [[lxqt-environment]] === LXQT LXQt is an advanced, easy-to-use, and fast desktop environment based on Qt technologies. It has been tailored for users who value simplicity, speed, and an intuitive interface. Unlike most desktop environments, LXQt also works fine with less powerful machines. [[lxqt-install]] ==== Install LXQT To install the LXQT meta package, execute: [source,shell] .... # pkg install lxqt .... [[lxqt-configuration]] ==== Configure LXQT LXQT requires `/proc` to be mounted. Add this line to `/etc/fstab` to mount this file system automatically during system startup: [.programlisting] .... # Device Mountpoint FStype Options Dump Pass# proc /proc procfs rw 0 0 .... LXQT uses man:dbus-daemon[1] for a message bus and hardware abstraction. This application is automatically installed as a dependency of LXQT. Enable D-BUS in `/etc/rc.conf` to start at system boot: [source,shell] .... # sysrc dbus_enable="YES" .... [[lxqt-start]] ==== Start LXQT The preferred LXQT display manager is package:x11/sddm[]. To install package:x11/sddm[], execute: [source,shell] .... # pkg install sddm .... Enable SDDM service in `/etc/rc.conf` to start at system boot: [source,shell] .... # sysrc sddm_enable="YES" .... The keyboard language can be set in SDDM by running the following command (for example, for Spanish): [source,shell] .... # sysrc sddm_lang="es_ES" .... A second method to start LXQT is by manually invoking man:startx[1]. For this to work, the following line is needed in `~/.xinitrc`: [source,shell] .... % echo "exec dbus-launch --exit-with-x11 ck-launch-session startlxqt" > ~/.xinitrc .... [[desktop-browsers]] == Browsers This section describes how to install and configure some popular web browsers on a FreeBSD system, from full web browsers with high resource consumption to command line web browsers with reduced resource usage. .Supported browsers [options="header", cols="1,1,1,1"] |=== | Name | License | Package | Resources Needed | Firefox | MPL 2.0 | package:www/firefox[] | Heavy | Chromium | BSD-3 and others | package:www/chromium[] | Heavy | Iridium browser | BSD-3 and others | package:www/iridium-browser[] | Heavy | Falkon | MPL 2.0 | package:www/falkon-qtonly[] | Heavy | Konqueror | GPL 2.0 or later | package:x11-fm/konqueror[] | Medium | Gnome Web (Epiphany) | GPL 3.0 or later | package:www/epiphany[] | Medium | qutebrowser | GPL 3.0 or later | package:www/qutebrowser[] | Medium | Dillo | GPL 3.0 or later | package:www/dillo2[] | Light | Links | GPL 2.0 or later | package:www/links[] | Light | w3m | MIT | package:www/w3m[] | Light |=== [[firefox]] === Firefox Firefox is an open source browser that features a standards-compliant HTML display engine, tabbed browsing, popup blocking, extensions, improved security, and more. Firefox is based on the Mozilla codebase. To install the package of the latest release version of Firefox, execute: [source,shell] .... # pkg install firefox .... To instead install Firefox Extended Support Release (ESR) version, execute: [source,shell] .... # pkg install firefox-esr .... [[chromium]] === Chromium Chromium is an open source browser project that aims to build a safer, faster, and more stable web browsing experience. Chromium features tabbed browsing, popup blocking, extensions, and much more. Chromium is the open source project upon which the Google Chrome web browser is based. To install Chromium, execute: [source,shell] .... # pkg install chromium .... [NOTE] ==== The executable for Chromium is [.filename]#/usr/local/bin/chrome#, not [.filename]#/usr/local/bin/chromium#. ==== [[iridium]] === Iridium browser Iridium is a free, open, and libre browser modification of the Chromium code base, with privacy being enhanced in several key areas. Automatic transmission of partial queries, keywords, metrics to central services is inhibited and only occurs with consent. To install Iridium, execute: [source,shell] .... # pkg install iridium-browser .... [[falkon]] === Falkon Falkon is a new-ish and very fast QtWebEngine browser. It aims to be a lightweight web browser available on all major platforms. Falkon has all standard functions someone can expect from a web browser. It includes bookmarks, history (both also in sidebar) and tabs. Beyond that, AdBlock plugin can block ads, Click2Flash can block Flash content and SSL Manager can edit the local CA Certificates database. To install Falkon, execute: [source,shell] .... # pkg install falkon .... [[konqueror]] === Konqueror Konqueror is more than a web browser as it is also a file manager and a multimedia viewer. It supports WebKit, a rendering engine used by many modern browsers including Chromium, as well as its own KHTML engine. To install Konqueror, execute: [source,shell] .... # pkg install konqueror .... [[gnome-web-epiphany]] === Gnome Web (Epiphany) Gnome Web (Epiphany) is a web browser designed to be as lightweight and fast as possible, at the expense of many of the features found in other browsers. To install Gnome Web (Epiphany), execute: [source,shell] .... # pkg install epiphany .... [[qutebrowser]] === qutebrowser Qutebrowser is a keyboard-focused browser with a minimal GUI. It is based on Python and PyQt5 and free software, licensed under the GPL. To install qutebrowser, execute: [source,shell] .... # pkg install qutebrowser .... [[dillo]] === Dillo Dillo aims to be a multiplatform alternative browser that is small, stable, developer-friendly, usable, fast, and extensible. This new, experimental version of Dillo is based upon FLTK toolkit, rather than GTK1, and has been substantially rewritten. To install Dillo, execute: [source,shell] .... # pkg install dillo2 .... [[links]] === Links A lynx-like web browser with text and graphics modes with many features like displaying tables, menus, etc. To install Links, execute: [source,shell] .... # pkg install links .... [[w3m]] === w3m w3m is a pager/text-based web browser. It is a similar application to Lynx, but it has several features Lynx does not have like rendering tables and rendering frames. To install w3m, execute: [source,shell] .... # pkg install w3m .... [[desktop-development]] == Development tools This section describes how to install and configure some popular development tools on a FreeBSD system. .Supported development tools [options="header", cols="1,1,1,1"] |=== | Name | License | Package | Resources Needed | Visual Studio Code | MIT | package:editors/vscode[] | Heavy | Qt Creator | QtGPL | package:devel/qtcreator[] | Heavy | Kdevelop | GPL 2.0 or later and LGPL 2.0 or later | package:devel/kdevelop[] | Heavy | Eclipse IDE | EPL | package:java/eclipse[] | Heavy | Vim | VIM | package:editors/vim[] | Light | Neovim | Apache 2.0 | package:editors/neovim[] | Light | GNU Emacs | GPL 3.0 or later | package:editors/emacs[] | Light |=== [[vs-code]] === Visual Studio Code Visual Studio Code is a type of tool that combines the simplicity of a code editor with what developers need for their core edit-build-debug cycle. It provides comprehensive editing and debugging support, an extensibility model, and lightweight integration with existing tools. To install Visual Studio Code, execute: [source,shell] .... # pkg install vscode .... [[qt-creator]] === Qt Creator Qt Creator is a cross-platform IDE (integrated development environment) tailored to the needs of Qt developers. Functionalities included with Qt Creator are: * code editor with C++, QML and ECMAscript support; * rapid code navigation tools; * static code checking and style hints as you type; * context sensitive help; * visual debugger; * integrated GUI layout and forms designer. To install Qt Creator, execute: [source,shell] .... # pkg install qtcreator .... [[kdevelop]] === kdevelop Open source, feature-full, plugin extensible IDE for C/C++ and other programming languages. It is based on KDevPlatform and the KDE and Qt libraries, and it has been under development since 1998. To install kdevelop, execute: [source,shell] .... # pkg install kdevelop .... [[eclipse]] === Eclipse IDE The Eclipse Platform is an open extensible IDE for anything and yet nothing in particular. The Eclipse Platform provides building blocks and a foundation for constructing and running integrated software-development tools. The Eclipse Platform allows tool builders to independently develop tools that integrate with other people's tools. To install Eclipse IDE, execute: [source,shell] .... # pkg install eclipse .... [[vim]] === Vim Vim is a highly configurable text editor built to enable efficient text editing. It is an improved version of the vi editor distributed with most UNIX systems. Vim is often called a "programmer's editor," and so useful for programming that many consider it an entire IDE. It is not just for programmers, though. Vim is perfect for all kinds of text editing, from composing email to editing configuration files. To install Vim, execute: [source,shell] .... # pkg install vim .... [[neovim]] === Neovim Neovim is an aggressive refactor of package:editors/vim[]. It represents a complete overhaul of the codebase with many sanity improvements, including sensible defaults, a built-in terminal emulator, asynchronous plugin architecture, and powerful APIs designed for speed and extensibility. It retains full compatibility with almost all Vim plugins and scripts. To install Neovim, execute: [source,shell] .... # pkg install neovim .... [[gnu-emacs]] === GNU Emacs GNU Emacs is an extensible, customizable, free/libre text editor. At its core is an interpreter for Emacs Lisp, a dialect of the Lisp programming language with extensions to support text editing. To install GNU Emacs, execute: [source,shell] .... # pkg install emacs .... [[desktop-productivity]] == Desktop office productivity When it comes to productivity, users often look for an office suite or an easy-to-use word processor. While some desktop environments like <> provide an office suite, there is no default productivity package. Several office suites and graphical word processors are available for FreeBSD, regardless of the installed desktop environments. This section demonstrates how to install the following popular productivity software and indicates if the application is resource-heavy, takes time to compile from ports, or has any major dependencies. .Supported Desktop office productivity suites [options="header", cols="1,1,1,1"] |=== | Name | License | Package | Resources Needed | LibreOffice | MPL 2.0 | package:editors/libreoffice[] | Heavy | Calligra Suite | LGPL and GPL | package:editors/calligra[] | Medium | AbiWord | GPL 2.0 or later | package:editors/abiword[] | Medium |=== [[libreoffice]] === LibreOffice LibreOffice is a free software office suite developed by http://www.documentfoundation.org/[The Document Foundation]. It is compatible with other major office suites and available on a variety of platforms. It is a rebranded fork of Apache OpenOffice and includes applications found in a complete office productivity suite: a word processor, spreadsheet, presentation manager, drawing program, database management program, and a tool for creating and editing mathematical formulæ. It is available in a number of different languages and internationalization has been extended to interfaces, spell checkers, and dictionaries. More information about LibreOffice can be found at http://www.libreoffice.org/[libreoffice.org]. To install LibreOffice, execute: [source,shell] .... # pkg install libreoffice .... The LibreOffice package comes by default only in English. To have a localized version of LibreOffice it is necessary to install a language pack. For example, for the version localized in Spanish, it is necessary to install the package package:editors/libreoffice-es[] with the command: [source,shell] .... # pkg install libreoffice-es .... [[calligra]] === Calligra The KDE Plasma desktop environment includes an office suite which can be installed separately from KDE Plasma. Calligra includes standard components that can be found in other office suites. Words is the word processor, Sheets is the spreadsheet program, Stage manages slide presentations, and Karbon is used to draw graphical documents. To install Calligra, execute: [source,shell] .... # pkg install calligra .... [[abiword]] === AbiWord AbiWord is a free word processing program similar in look and feel to Microsoft(R) Word. It is fast, contains many features, and is user-friendly. AbiWord can import or export many file formats, including some proprietary ones like Microsoft(R) [.filename]#.rtf#. To install AbiWord, execute: [source,shell] .... # pkg install abiword .... [[desktop-viewers]] == Document Viewers Some new document formats have gained popularity since the advent of UNIX(R) and the viewers they require may not be available in the base system. This section demonstrates how to install the following document viewers: .Supported Document Viewers [options="header", cols="1,1,1,1"] |=== | Name | License | Package | Resources Needed | Okular | GPL 2.0 | package:graphics/okular[] | Heavy | Evince | GPL 2.0 | package:graphics/evince[] | Medium | ePDFView | GPL 2.0 | package:graphics/epdfview[] | Medium | Xpdf | GPL 2.0 | package:graphics/xpdf[] | light | Zathura | Zlib | package:graphics/zathura[] | light |=== [[okular]] === Okular Okular is a universal document viewer, part of the KDE Plasma project. Okular combines excellent functionality with the versatility of supporting different kind of documents, like PDF, Postscript, DjVu, CHM, XPS, ePub and others. To install Okular, execute: [source,shell] .... # pkg install okular .... [[evince]] === Evince Evince is a document viewer for multiple document formats including PDF and Postscript. Part of the GNOME project. The goal of evince is to replace document viewers such as ggv and gpdf with a single, simple application. To install Evince, execute: [source,shell] .... # pkg install evince .... [[epdfview]] === ePDFView ePDFView is a lightweight PDF document viewer that only uses the Gtk+ and Poppler libraries. The aim of ePDFView is to make a simple PDF document viewer, similar to Evince but without using the GNOME libraries. To install ePDFView, execute: [source,shell] .... # pkg install epdfview .... [[xpdf]] === Xpdf For users that prefer a small FreeBSD PDF viewer, Xpdf provides a light-weight and efficient viewer which requires few resources. It uses the standard X fonts and does not require any additional toolkit. To install Xpdf, execute: [source,shell] .... # pkg install xpdf .... [[zathura]] === Zathura Zathura is a highly customizable and functional document viewer. It provides a minimalistic and space saving interface as well as an easy usage that mainly focuses on keyboard interaction. To install zathura, with PDF support, execute: [source,shell] .... # pkg install zathura zathura-pdf-mupdf .... Additionally, one can install package:graphics/zathura-pdf-poppler[] for alternative PDF support, package:graphics/zathura-ps[] for PostScript support, package:graphics/zathura-djvu[] for DjVu support, and package:graphics/zathura-cb[] for comic book support. [[desktop-finance]] == Finance For managing personal finances on a FreeBSD desktop, some powerful and easy-to-use applications can be installed. Some are compatible with widespread file formats, such as the formats used by Quicken and Excel. This section covers these programs: .Supported Finance programs [options="header", cols="1,1,1,1"] |=== | Name | License | Package | Resources Needed | KMyMoney | GPL 2.0 | package:finance/kmymoney[] | Heavy | GnuCash | GPL 2.0 and GPL 3.0 | package:finance/gnucash[] | Heavy |=== [[kmymoney]] === KMyMoney KMyMoney is a personal finance application created by the KDE community. KMyMoney aims to provide the important features found in commercial personal finance manager applications. It also highlights ease-of-use and proper double-entry accounting among its features. KMyMoney imports from standard Quicken QIF files, tracks investments, handles multiple currencies, and provides a wealth of reports. To install KMyMoney, execute: [source,shell] .... # pkg install kmymoney .... [[gnucash]] === GnuCash GnuCash is part of the GNOME effort to provide user-friendly, yet powerful, applications to end-users. GnuCash can be used to keep track of income and expenses, bank accounts, and stocks. It features an intuitive interface while remaining professional. GnuCash provides a smart register, a hierarchical system of accounts, and many keyboard accelerators and auto-completion methods. It can split a single transaction into several more detailed pieces. GnuCash can import and merge Quicken QIF files. It also handles most international date and currency formats. To install GnuCash, execute: [source,shell] .... # pkg install gnucash ....