Difference between revisions of "Xfce"

From Free Knowledge Base- The DUCK Project: information for everyone
Jump to: navigation, search
Line 1: Line 1:
XFCE - a lightweight and efficient Graphical Desktop envoronment for Linux/*nix XWindows (X.org).
+
XFCE - a lightweight and efficient Graphical Desktop environment for Linux/*nix XWindows (X.org).
 +
 
 +
Xfce is a desktop environment for Unix and other Unix-like platforms (such as Linux, Solaris or BSD). Xfce is "Designed for productivity. It loads and executes applications fast, while conserving system resources." (Olivier Fourdan). This philosophy should appeal to anyone looking for a fast, modern, and efficient working environment for a *NIX box.  
  
 
{{:Template:Sparse Entry}}
 
{{:Template:Sparse Entry}}
Line 19: Line 21:
 
== HowTo ==
 
== HowTo ==
  
=== Customize the Xfce menu ===
+
=== Keyboard Menu shortcut ===
 +
Assign a key with the Keyboard Settings -> Shortcuts to the command
 +
xfdesktop -menu.
 +
The menu will popup where the mouse cursor is at. You can also use
 +
xfce4-popup-applicationsmenu
 +
This will open the panel menu.
  
 +
The so called "windows" button on modern keyboards is correctly called "[[The Superkey]]."  This key is fully functional when using the GTK+ Toolkit version 2.10 or higher as advised by the [http://wiki.xfce.org/faq Xfce Wiki].
 +
 +
=== Customize the keyboard layout and shortcut keys ===
 +
Display all defined shortcut keys with this command:
 +
xfconf-query -c xfce4-keyboard-shortcuts -l -v | cut -d'/' -f4 | awk '{printf "%30s", $2; print "\t" $1}' | sort | uniq
 +
 +
Both xfce4-xkb-plugin and setxkbmap can be used to change keyboard layouts.  However, if all you want to do is customize shortcuts then you need to create your own theme.
 +
 +
Keyboard shortcuts are defined on two locations. The shortcuts to handle the window manager are defined in the following location:
 +
* Settings Manager -> Window Manager Settings -> Keyboard
 +
You cannot change the default theme so you need to add a new theme and customize it. 
 +
 +
Global shortcuts: volume, play disc, stop, rewind are defined in the following location:
 +
* Settings Manager -> Keyboard Preferences -> Shortcuts
 +
 +
=== Customize the Xfce menu ===
 
It's done by edit of the menu configuration files with an editor such as vi.
 
It's done by edit of the menu configuration files with an editor such as vi.
 
Custom xfce menus can be located in places like: /etc/xdg/xdg-mythbuntu/menus
 
Custom xfce menus can be located in places like: /etc/xdg/xdg-mythbuntu/menus
Line 28: Line 51:
 
  rm /usr/share/applications/mplayer.desktop
 
  rm /usr/share/applications/mplayer.desktop
  
 +
==References and External Resources==
 +
* [http://wiki.xfce.org/faq Xfce Frequently asked questions (FAQ)]
 +
* Xfce Forum Topic: [http://forum.xfce.org/viewtopic.php?id=6729 Multimedia key support in Xfce]
 +
* [http://ubuntuforums.org/showthread.php?t=1029580 Hold down the SHIFT key so xev will give you the keycode to media keys]
  
  
 
+
 
  
 
[[Category:Computer_Technology]]
 
[[Category:Computer_Technology]]
 
[[Category:Linux]]
 
[[Category:Linux]]

Revision as of 10:32, 23 February 2015

XFCE - a lightweight and efficient Graphical Desktop environment for Linux/*nix XWindows (X.org).

Xfce is a desktop environment for Unix and other Unix-like platforms (such as Linux, Solaris or BSD). Xfce is "Designed for productivity. It loads and executes applications fast, while conserving system resources." (Olivier Fourdan). This philosophy should appeal to anyone looking for a fast, modern, and efficient working environment for a *NIX box.

 

Contributeduck176.gif
Note: This page is notably incomplete. You can help. Please contribute by registering your email address and adding your knowledge to this page. The D.U.C.K. wiki was created to be a free informative place that allows an open exchange of accurate information.
Learn more...

Software / Apps for xfce

Image Viewers

  • Ristretto - a lightweight image viewer. review: does not work. images partially load. stupid ui.
  • Geequi - also knon as gqview. review: best little image viewer currently available. single click folder nav should be optional but isn't. installation: apt-get install gqview

Web Browsers

  • Chromium
  • Firefox

Utility

  • Thunar File Manager
  • KeyMon

Media

  • MythTV
  • VLC Media Player

HowTo

Keyboard Menu shortcut

Assign a key with the Keyboard Settings -> Shortcuts to the command

xfdesktop -menu. 

The menu will popup where the mouse cursor is at. You can also use

xfce4-popup-applicationsmenu 

This will open the panel menu.

The so called "windows" button on modern keyboards is correctly called "The Superkey." This key is fully functional when using the GTK+ Toolkit version 2.10 or higher as advised by the Xfce Wiki.

Customize the keyboard layout and shortcut keys

Display all defined shortcut keys with this command:

xfconf-query -c xfce4-keyboard-shortcuts -l -v | cut -d'/' -f4 | awk '{printf "%30s", $2; print "\t" $1}' | sort | uniq

Both xfce4-xkb-plugin and setxkbmap can be used to change keyboard layouts. However, if all you want to do is customize shortcuts then you need to create your own theme.

Keyboard shortcuts are defined on two locations. The shortcuts to handle the window manager are defined in the following location:

  • Settings Manager -> Window Manager Settings -> Keyboard

You cannot change the default theme so you need to add a new theme and customize it.

Global shortcuts: volume, play disc, stop, rewind are defined in the following location:

  • Settings Manager -> Keyboard Preferences -> Shortcuts

Customize the Xfce menu

It's done by edit of the menu configuration files with an editor such as vi. Custom xfce menus can be located in places like: /etc/xdg/xdg-mythbuntu/menus

vi /etc/xdg/xdg-mythbuntu/menus/xfce-applications.menu

Say I want to remove mplayer from the Application -> Multimedia menu.

rm /usr/share/applications/mplayer.desktop

References and External Resources