Skip to content

Commit

Permalink
add tidal
Browse files Browse the repository at this point in the history
  • Loading branch information
foxt committed Nov 12, 2021
1 parent 024d671 commit e3a21a5
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion SMTCRP/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public static void HideConsoleWindow()
ShowWindow(handle, SW_HIDE);
}
#endregion
public static string[] icons = new string[] { "dopamine", "winamp", "zunemusic" };
public static string[] icons = new string[] { "dopamine", "winamp", "zunemusic", "tidal" };
public static DiscordRpcClient client;
public static NotifyIcon trayIcon = new NotifyIcon();
public static ContextMenuStrip context = new ContextMenuStrip();
Expand Down Expand Up @@ -319,6 +319,11 @@ public static void update(object sender, ElapsedEventArgs arg)
appLogo = "winamp";
appName = "Winamp";
}
if (appName.ToLower().StartsWith("tidal"))
{
appLogo = "tidal";
appName = "TIDAL";
}
if (appName.EndsWith("ZuneMusic"))
{
appLogo = "zunemusic";
Expand Down

0 comments on commit e3a21a5

Please sign in to comment.