f00500d3d5
Remove the last use of passing width into Dash by having the Pane with the previews scaling dynamically and relying on Clutter scaling. If we only have one workspace, don't display a selection frame for it. Rework Dash into a searchArea and sectionArea, which get explicitly sized by overlay.js. We use the workspaces size to choose the size of those dash areas. Switch dash colors/boxes etc. to ones from shell-black02. Add a gradient to the panel. Add a magnifier.svg for use in search.
38 lines
929 B
Makefile
38 lines
929 B
Makefile
desktopdir=$(datadir)/applications
|
|
desktop_DATA = gnome-shell.desktop
|
|
|
|
# We substitute in bindir so it works as an autostart
|
|
# file when built in a non-system prefix
|
|
gnome-shell.desktop.in: gnome-shell.desktop.in.in
|
|
$(AM_V_GEN) sed -e "s|@bindir[@]|$(bindir)|" \
|
|
-e "s|@VERSION[@]|$(VERSION)|" \
|
|
$< > $@ || rm $@
|
|
|
|
# Placeholder until we add intltool
|
|
gnome-shell.desktop: gnome-shell.desktop.in
|
|
$(AM_V_GEN) sed s/^_// < $< > $@ || rm $@
|
|
|
|
imagedir = $(pkgdatadir)/images
|
|
|
|
dist_image_DATA = \
|
|
add-workspace.svg \
|
|
close.svg \
|
|
info.svg \
|
|
magnifier.svg \
|
|
remove-workspace.svg
|
|
|
|
schemadir = @GCONF_SCHEMA_FILE_DIR@
|
|
schema_DATA = gnome-shell.schemas
|
|
|
|
install-data-local:
|
|
GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) --makefile-install-rule $(srcdir)/$(schema_DATA)
|
|
|
|
EXTRA_DIST = \
|
|
gnome-shell.desktop.in.in \
|
|
$(schema_DATA)
|
|
|
|
CLEANFILES = \
|
|
gnome-shell.desktop.in \
|
|
$(desktop_DATA)
|
|
|