2012-10-24 11:37:00 -04:00
|
|
|
---
|
2015-04-10 16:17:45 -04:00
|
|
|
layout: doc
|
2012-10-24 11:37:00 -04:00
|
|
|
title: XFCE
|
2015-10-28 18:14:40 -04:00
|
|
|
permalink: /doc/xfce/
|
2015-09-22 05:02:22 -04:00
|
|
|
redirect_from:
|
2015-10-28 18:14:40 -04:00
|
|
|
- /en/doc/xfce/
|
2015-10-11 03:04:59 -04:00
|
|
|
- /doc/XFCE/
|
2015-09-22 05:02:22 -04:00
|
|
|
- "/doc/UserDoc/XFCE/"
|
|
|
|
- "/wiki/UserDoc/XFCE/"
|
2012-10-24 11:37:00 -04:00
|
|
|
---
|
|
|
|
|
2016-01-10 18:41:30 -05:00
|
|
|
XFCE installation in dom0
|
2012-10-24 11:37:00 -04:00
|
|
|
========================
|
|
|
|
|
2017-05-11 02:27:14 -04:00
|
|
|
**Disclaimer: The article is obsolete for Qubes OS 3.2 and later.**
|
|
|
|
|
|
|
|
Prior to R3.2, KDE was the default desktop environment in Qubes. Beginning with
|
2018-02-03 15:51:06 -05:00
|
|
|
R3.2 [XFCE is the new default desktop environment](/doc/releases/3.2/release-notes/) and does not require manual installation.
|
2017-05-11 02:27:14 -04:00
|
|
|
|
2012-10-24 11:37:00 -04:00
|
|
|
|
|
|
|
Installation:
|
|
|
|
|
2016-07-01 14:14:50 -04:00
|
|
|
sudo qubes-dom0-update @xfce-desktop-qubes
|
2012-10-24 11:37:00 -04:00
|
|
|
|
|
|
|
Reboot the system. At system startup, select "Xfce session" in login screen (menu on the right bottom corner of the screen).
|
|
|
|
|
|
|
|
Configuration
|
|
|
|
-------------
|
|
|
|
|
2016-02-04 14:05:59 -05:00
|
|
|
Things needed/recommended to be done:
|
2012-10-24 11:37:00 -04:00
|
|
|
|
|
|
|
- remove some useless entries from menu and panel, especially file manager, web browser
|
|
|
|
- create own favorites menu (currently standard XFCE menu isn't modified to use per-VM subsections, which makes it very inconvenient):
|
2015-10-07 20:43:20 -04:00
|
|
|
1. create `~/.config/menus/favorites.menu`, example content:
|
2012-10-24 11:37:00 -04:00
|
|
|
|
2015-09-26 18:51:30 -04:00
|
|
|
~~~
|
2012-10-24 11:37:00 -04:00
|
|
|
<!DOCTYPE Menu PUBLIC "-//freedesktop//DTD Menu 1.0//EN"
|
2015-09-26 18:51:30 -04:00
|
|
|
"http://www.freedesktop.org/standards/menu-spec/1.0/menu.dtd">
|
2012-10-24 11:37:00 -04:00
|
|
|
|
|
|
|
<Menu>
|
2015-09-26 18:51:30 -04:00
|
|
|
<Name>Favorites</Name>
|
|
|
|
<DefaultAppDirs/>
|
|
|
|
<DefaultDirectoryDirs/>
|
|
|
|
|
|
|
|
<Directory>favorites.directory</Directory>
|
|
|
|
<Include>
|
|
|
|
<Filename>personal-gnome-terminal.desktop</Filename>
|
|
|
|
<Filename>personal-firefox.desktop</Filename>
|
|
|
|
<Filename>work-gnome-terminal.desktop</Filename>
|
|
|
|
<Filename>work-firefox.desktop</Filename>
|
|
|
|
<Filename>mail-mozilla-thunderbird.desktop</Filename>
|
|
|
|
<Filename>mail-gnome-terminal.desktop</Filename>
|
|
|
|
<Filename>banking-mozilla-firefox.desktop</Filename>
|
|
|
|
<Filename>untrusted-firefox.desktop</Filename>
|
|
|
|
</Include>
|
2012-10-24 11:37:00 -04:00
|
|
|
</Menu>
|
2015-09-26 18:51:30 -04:00
|
|
|
~~~
|
2012-10-24 11:37:00 -04:00
|
|
|
|
2012-10-24 15:13:31 -04:00
|
|
|
2. add it to the panel: right click on panel, "add new items", select "XFCE menu", choose custom menu file - just created one
|