From 34e364b880fc0a39ded730c3a1d474e793a777bd Mon Sep 17 00:00:00 2001 From: Arun Raghavan Date: Tue, 24 Sep 2024 12:03:57 -0400 Subject: [PATCH] Update icons in build system and UI file --- src/mainwindow.ui | 2 +- src/meson.build | 13 +++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/src/mainwindow.ui b/src/mainwindow.ui index 057aef6..37b07c0 100644 --- a/src/mainwindow.ui +++ b/src/mainwindow.ui @@ -5,7 +5,7 @@ Volume Control 500 400 - multimedia-volume-control + org.pulseaudio.pavucontrol diff --git a/src/meson.build b/src/meson.build index ba8fa76..60b8c6d 100644 --- a/src/meson.build +++ b/src/meson.build @@ -55,3 +55,16 @@ appdata_file = i18n.merge_file( install : true, install_dir : datadir / 'metainfo', ) + +# TODO: use the Devel version on beta builds? +icon_filename = 'org.pulseaudio.pavucontrol.svg' +install_data( + icon_filename, + install_dir: datadir / 'icons' / 'hicolor' / 'scalable' / 'apps' +) + +icon_filename = 'org.pulseaudio.pavucontrol-symbolic.svg' +install_data( + icon_filename, + install_dir: datadir / 'icons' / 'hicolor' / 'symbolic' / 'apps' +)