2024-12-11 20:09:53 -07:00
|
|
|
{ lib, ty-home-manager-options, ... }:
|
2024-12-02 03:57:34 -07:00
|
|
|
{
|
2024-12-11 20:09:53 -07:00
|
|
|
xdg.desktopEntries = lib.mkIf ty-home-manager-options.plasma.enable {
|
2024-12-02 03:57:34 -07:00
|
|
|
# Override vesktop for matching icon in beautyline (make it generic discord icon)
|
|
|
|
vesktop = {
|
|
|
|
categories = [ "Network" "InstantMessaging" "Chat" ];
|
|
|
|
exec = "vesktop %U";
|
|
|
|
genericName = "Internet Messenger";
|
|
|
|
icon = "discord"; # CHANGED
|
|
|
|
name = "Vesktop";
|
|
|
|
type = "Application";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|