mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-14 15:56:13 +03:00
gtk: Install 1024x1024 icon (#4003)
Fixes #3967 Include the 1024x1024 icon in the files installed by `build.zig` when building the package for Linux with the GTK app runtime.
This commit is contained in:
@ -669,6 +669,7 @@ pub fn build(b: *std.Build) !void {
|
||||
b.installFile("images/icons/icon_128.png", "share/icons/hicolor/128x128/apps/com.mitchellh.ghostty.png");
|
||||
b.installFile("images/icons/icon_256.png", "share/icons/hicolor/256x256/apps/com.mitchellh.ghostty.png");
|
||||
b.installFile("images/icons/icon_512.png", "share/icons/hicolor/512x512/apps/com.mitchellh.ghostty.png");
|
||||
b.installFile("images/icons/icon_1024.png", "share/icons/hicolor/1024x1024/apps/com.mitchellh.ghostty.png");
|
||||
b.installFile("images/icons/icon_16@2x.png", "share/icons/hicolor/16x16@2/apps/com.mitchellh.ghostty.png");
|
||||
b.installFile("images/icons/icon_32@2x.png", "share/icons/hicolor/32x32@2/apps/com.mitchellh.ghostty.png");
|
||||
b.installFile("images/icons/icon_128@2x.png", "share/icons/hicolor/128x128@2/apps/com.mitchellh.ghostty.png");
|
||||
|
@ -47,6 +47,10 @@ const icons = [_]struct {
|
||||
.alias = "512x512",
|
||||
.source = "512",
|
||||
},
|
||||
.{
|
||||
.alias = "1024x1024",
|
||||
.source = "1024",
|
||||
},
|
||||
};
|
||||
|
||||
pub const gresource_xml = comptimeGenerateGResourceXML();
|
||||
|
Reference in New Issue
Block a user