summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorFelipe Borges <felipeborges@gnome.org>2019-10-08 18:35:26 +0200
committerRobert Ancell <robert.ancell@gmail.com>2019-10-14 20:25:39 +0000
commita1c48ce477f4e83c0e58e98d705768451a97206b (patch)
tree5d16efb0de06ebebba4beac446caa5474b5a31e4 /data
parent65c4dd000577b345c00ee1c3734829c829fc6bb9 (diff)
downloadgnome-control-center-a1c48ce477f4e83c0e58e98d705768451a97206b.tar.gz
flatpak: Use the Nightly variant of the application icon
For the "development" profile, lets use the Nightly variant, to visually indicate to users that they are running an unstable version of the application.
Diffstat (limited to 'data')
-rw-r--r--data/icons/meson.build9
1 files changed, 9 insertions, 0 deletions
diff --git a/data/icons/meson.build b/data/icons/meson.build
index a6a6c221f..f94128956 100644
--- a/data/icons/meson.build
+++ b/data/icons/meson.build
@@ -2,3 +2,12 @@ install_subdir(
'hicolor',
install_dir : control_center_icondir
)
+
+if get_option('profile') == 'development'
+ icondir = join_paths('hicolor', 'scalable', 'apps')
+ install_data(
+ join_paths(icondir, 'org.gnome.Settings.Devel.svg'),
+ install_dir: join_paths(control_center_icondir, icondir),
+ rename: 'org.gnome.Settings.svg'
+ )
+endif