Difference between revisions of "GNOME"

From Organic Design wiki
(GnomeShell extensions)
(installing extensions)
Line 4: Line 4:
 
[[File:GNOME3 Screenshot.png|640px]]
 
[[File:GNOME3 Screenshot.png|640px]]
  
*[https://live.gnome.org/GnomeShell/Extensions GnomeShell extensions]
+
=== Extensions ===
 +
The [https://live.gnome.org/GnomeShell/Extensions GNOME Shell extension] design is designed to give a high degree of power to the parts of the GNOME interface managed by the shell, such as window management and application launching. It simply loads arbitrary JavaScript and CSS. This gives developers a way to make many kinds of changes and share those changes with others, without having to patch the original source code and recompile it, and somehow distribute the patched code. To install an extension use the following syntax:
 +
{{code|<bash>
 +
./autogen.sh --prefix=$HOME/.local --enable-extensions="one two three"
 +
make install
 +
</bash>}}
  
 
== See also ==
 
== See also ==
 
*[[KDE vs GNOME]]
 
*[[KDE vs GNOME]]
 
[[Category:Libre software]][[Category:Linux]][[Category:Desktop environments]]
 
[[Category:Libre software]][[Category:Linux]][[Category:Desktop environments]]

Revision as of 22:46, 25 December 2011

GNOME offers an easy to understand desktop environment for your GNU/Linux or UNIX computer.

GNOME 3

GNOME3 Screenshot.png

Extensions

The GNOME Shell extension design is designed to give a high degree of power to the parts of the GNOME interface managed by the shell, such as window management and application launching. It simply loads arbitrary JavaScript and CSS. This gives developers a way to make many kinds of changes and share those changes with others, without having to patch the original source code and recompile it, and somehow distribute the patched code. To install an extension use the following syntax:

{{{1}}}

See also