• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

dark/H03-May-2022-5,4594,766

light/H03-May-2022-6,4785,643

.gitignoreH A D25-Sep-2021142 1413

LICENSE.CCH A D25-Sep-202121.7 KiB360333

LICENSE.GPLH A D25-Sep-202117.7 KiB340281

README.mdH A D25-Sep-20211.4 KiB6546

meson.buildH A D25-Sep-2021575 2520

README.md

1Greybird
2=======
3Desktop Suite for Xfce
4----------------------
5URL: https://github.com/shimmerproject/Greybird
6
7Copyright 2009–2019 Simon Steinbeiß, Satyajit Sahoo, Pasi Lallinaho, Carson Black, Maurizio Galli
8
9Greybird is dual-licensed as GPLv2 or later and CC-BY-SA 3.0 or later.
10
11Greybird is the default theme in Xubuntu 11.04 onwards.
12
13The Greybird desktop suite includes:
14- Gtk+2 theme
15- Gtk+3 theme
16- Xfwm4 themes (normal and compact)
17- xfce-notifyd theme (dark and bright)
18- Emerald theme
19- Metacity theme
20- Mutter theme
21- Gnome Shell theme
22- Plank theme
23- Unity support
24
25Dependencies for Gtk+2 support:
26- gtk2-engines-murrine (>= 0.90)
27
28The Gtk+3 theme uses the builtin engine and consequently has no dependencies.
29
30### Build dependencies ###
31Debian or Ubuntu:
32
33`sudo apt install autoconf libgdk-pixbuf2.0-dev libglib2.0-bin librsvg2-dev meson ruby-sass sassc`
34
35Fedora:
36
37`dnf install gdk-pixbuf2-devel librsvg2-devel meson rubygem-sass`
38
39openSUSE:
40
41`zypper in fdupes gdk-pixbuf-devel gdk-pixbuf-loader-rsvg glib2-devel meson sassc`
42
43### Build and Install ###
44
45#### Local (User) Install ####
46
47```
48meson --prefix=$HOME/.local builddir
49cd builddir
50ninja
51ninja install
52ln -sf ~/.local/share/themes ~/.themes # Required for GTK2
53```
54
55#### System Install ####
56
57```
58meson --prefix=/usr builddir
59cd builddir
60ninja
61ninja install
62```
63
64You don't need to use `sudo` anywhere in the build and install process, as Ninja will elevate with polkit when needed.
65