-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for iconix #22
Comments
This feels somewhat difficult to pull off, but its certainly possible. I'll keep this open and try to work on it when I get the chance. |
The desktop icon can be easily patched if your installed icon theme includes a discord icon: vesktop.package = pkgs.vesktop.overrideAttrs (prev: {
desktopItems = [
(pkgs.makeDesktopItem {
name = "discord";
desktopName = "Discord";
exec = "vesktop %U";
icon = "discord";
startupWMClass = "Discord";
genericName = "Internet Messenger";
keywords = [
"discord"
"vencord"
"vesktop"
];
})
];
}); |
@joinemm that will only patch the desktop icon though, not all the in-application icons. |
SpiderUnderUrBed
added a commit
to SpiderUnderUrBed/nixcord
that referenced
this issue
Oct 28, 2024
SpiderUnderUrBed
added a commit
to SpiderUnderUrBed/nixcord
that referenced
this issue
Oct 29, 2024
SpiderUnderUrBed
added a commit
to SpiderUnderUrBed/nixcord
that referenced
this issue
Oct 30, 2024
SpiderUnderUrBed
added a commit
to SpiderUnderUrBed/nixcord
that referenced
this issue
Nov 1, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Somebody made a Python script that will patch Vesktop to use the default Discord icons: https://github.com/Arcitec/iconix
It would be very useful to have this as an option.
The text was updated successfully, but these errors were encountered: