diff --git a/README b/README index d5823493..39994c27 100644 --- a/README +++ b/README @@ -27,4 +27,5 @@ AUTHOR: Lennart Poettering with major support from Kay Sievers LICENSE: - GPLv2+ for all code. + GPLv2+ for all code, + CC-BY-3.0-US for the desktop icon (from the GNOME Project). diff --git a/meson.build b/meson.build index 1cfa3e19..5f171d70 100644 --- a/meson.build +++ b/meson.build @@ -21,6 +21,7 @@ endif prefixdir = get_option('prefix') datadir = get_option('datadir') applicationsdir = datadir / 'applications' +iconsdir = datadir / 'icons/hicolor/scalable/apps' metainfodir = datadir / 'metainfo' userunitdir = prefixdir / 'lib/systemd/user' diff --git a/src/io.systemd.systemadm.desktop b/src/io.systemd.systemadm.desktop index 74a8d2be..7b697370 100644 --- a/src/io.systemd.systemadm.desktop +++ b/src/io.systemd.systemadm.desktop @@ -2,7 +2,7 @@ Name=systemadm Comment=Manage systemd units Exec=systemadm -Icon=applications-system +Icon=io.systemd.systemadm Terminal=false Type=Application Categories=System;Settings; diff --git a/src/io.systemd.systemadm.svg b/src/io.systemd.systemadm.svg new file mode 100644 index 00000000..523b01f0 --- /dev/null +++ b/src/io.systemd.systemadm.svg @@ -0,0 +1,111 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/meson.build b/src/meson.build index 26c91eca..fe42f389 100644 --- a/src/meson.build +++ b/src/meson.build @@ -4,6 +4,7 @@ systemadm = executable('systemadm', systemadm_files, dependencies: [common_flags, gtk3, gee, posix], install: true) install_data('io.systemd.systemadm.desktop', install_dir: applicationsdir) +install_data('io.systemd.systemadm.svg', install_dir: iconsdir) install_data('io.systemd.systemadm.metainfo.xml', install_dir: metainfodir) sgapa_files = files('gnome-ask-password-agent.vala')