Bladeren bron

Create & install 16, 24, 32, 48, 64px icons

deb-packaging
Matt Baer 5 jaren geleden
bovenliggende
commit
8f79ecdcb4
7 gewijzigde bestanden met toevoegingen van 10 en 3 verwijderingen
  1. +0
    -0
      data/icons/128/com.github.writeas.writeas-gtk.png
  2. BIN
      data/icons/16/com.github.writeas.writeas-gtk.png
  3. BIN
      data/icons/24/com.github.writeas.writeas-gtk.png
  4. BIN
      data/icons/32/com.github.writeas.writeas-gtk.png
  5. BIN
      data/icons/48/com.github.writeas.writeas-gtk.png
  6. BIN
      data/icons/64/com.github.writeas.writeas-gtk.png
  7. +10
    -3
      data/meson.build

data/icons/com.github.writeas.writeas-gtk.png → data/icons/128/com.github.writeas.writeas-gtk.png Bestand weergeven


BIN
data/icons/16/com.github.writeas.writeas-gtk.png Bestand weergeven

Voor Na
Breedte: 16  |  Hoogte: 16  |  Grootte: 729 B

BIN
data/icons/24/com.github.writeas.writeas-gtk.png Bestand weergeven

Voor Na
Breedte: 24  |  Hoogte: 24  |  Grootte: 1.2 KiB

BIN
data/icons/32/com.github.writeas.writeas-gtk.png Bestand weergeven

Voor Na
Breedte: 32  |  Hoogte: 32  |  Grootte: 1.7 KiB

BIN
data/icons/48/com.github.writeas.writeas-gtk.png Bestand weergeven

Voor Na
Breedte: 48  |  Hoogte: 48  |  Grootte: 3.1 KiB

BIN
data/icons/64/com.github.writeas.writeas-gtk.png Bestand weergeven

Voor Na
Breedte: 64  |  Hoogte: 64  |  Grootte: 4.2 KiB

+ 10
- 3
data/meson.build Bestand weergeven

@@ -1,6 +1,13 @@
install_data('icons/com.github.writeas.writeas-gtk.png',
install_dir: join_paths(get_option('datadir'), 'icons', 'hicolor', '128x128', 'apps')
)
icon_sizes = ['16', '24', '32', '48', '64', '128']

foreach i : icon_sizes
install_data(
join_paths('icons', i, meson.project_name() + '.png'),
install_dir: join_paths(get_option('datadir'), 'icons', 'hicolor', i + 'x' + i, 'apps'
)
)
endforeach

install_data('icons/writeas-bright-dark.png',
install_dir: join_paths(get_option('datadir'), 'icons', 'hicolor', '16x16', 'actions'))



Laden…
Annuleren
Opslaan