Hello, I've recently started a project using Tauri and I love this server because I can ctrl + f for all the answers to my questions haha.
However, I just was not able to find anything both online and here about Tauri icons on Chromebook linux (crostini). I'm not exactly sure if this bug is with Linux in general or just Crostini since no one on our team has a non-Chromebook Linux computer 😅 . Most articles I found online were about how to modify the icons of an app by finding a *.desktop file, but I think those are for end-users.
I can confirm that the icons work on both Windows and MacOS and they were setup using npm run tauri icon. I would appreciate a lot if someone could help!
Here is the tauri.conf.json file if you need.
"bundle": {
"active": true,
"targets": "all",
"identifier": "me.zhich.project-raphael",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/[email protected]",
"icons/icon.icns",
"icons/icon.ico"
]
}