diff options
author | Arun Raghavan <arun@asymptotic.io> | 2024-09-24 12:03:57 -0400 |
---|---|---|
committer | Arun Raghavan <arun@asymptotic.io> | 2024-09-25 08:47:09 -0400 |
commit | 34e364b880fc0a39ded730c3a1d474e793a777bd (patch) | |
tree | 394796b963fc1df5ffa827be65135a136966f226 /src | |
parent | 7763249b6df22b0dc0639970eb79ab0afdbd861d (diff) |
Update icons in build system and UI file
Diffstat (limited to 'src')
-rw-r--r-- | src/mainwindow.ui | 2 | ||||
-rw-r--r-- | src/meson.build | 13 |
2 files changed, 14 insertions, 1 deletions
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 @@ <property name="title" translatable="yes">Volume Control</property> <property name="default_width">500</property> <property name="default_height">400</property> - <property name="icon_name">multimedia-volume-control</property> + <property name="icon_name">org.pulseaudio.pavucontrol</property> <child> <placeholder/> </child> 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' +) |