linux: Update status icons to match new app icon

This commit is contained in:
Hylke Bons 2018-06-18 20:30:11 +01:00
parent 1b02a87463
commit 0bcdaac563
11 changed files with 2057 additions and 638 deletions

File diff suppressed because it is too large Load diff

Before

Width:  |  Height:  |  Size: 99 KiB

After

Width:  |  Height:  |  Size: 122 KiB

File diff suppressed because it is too large Load diff

Before

Width:  |  Height:  |  Size: 143 KiB

After

Width:  |  Height:  |  Size: 186 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 768 B

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 768 B

After

Width:  |  Height:  |  Size: 1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 831 B

After

Width:  |  Height:  |  Size: 1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -1,6 +1,6 @@
# Install app icons in system theme
theme_dir = join_paths(get_option('prefix'), 'share', 'icons', 'hicolor')
icon_sizes = ['16', '22', '24', '32', '48', '256', '512']
icon_sizes = ['16', '24', '48', '256', '512']
app_icon_name = 'org.sparkleshare.SparkleShare'
foreach size : icon_sizes
@ -60,3 +60,8 @@ size = '16'
install_data(sources: join_paths('hicolor', size + 'x' + size, category, 'list-point.png'),
install_dir: join_paths(app_theme_dir, size + 'x' + size, category))
size = '22'
install_data(sources: join_paths('hicolor', size + 'x' + size, category, 'process-working.png'),
install_dir: join_paths(app_theme_dir, size + 'x' + size, category))

View file

@ -51,6 +51,9 @@ namespace SparkleShare
application.Register (null);
application.Activated += ApplicationActivatedDelegate;
foreach (string s in IconTheme.Default.SearchPath)
Console.WriteLine(s);
if (IconTheme.Default != null)
IconTheme.Default.AppendSearchPath (Path.Combine (UserInterface.AssetsPath, "icons"));