13

Is there a way to get icons on the tabs in conemu? I would like the tab to have a PowerShell icon for my PowerShell tab for example. I have got it to work for the taskbar/jump list by specifying a task parameter, but I haven't figured out how to get icon on the tabs.

2 Answers2

14

Tab icons are available from the box for most of shells (if shell executable has icon in its resource).

If your shell does not have icon, or you want to use custom icon, look below for examples:

  • use /icon "C:\cygwin\Cygwin.ico" in your task parameters
  • use -new_console:C:"C:\cygwin\Cygwin.ico" in the shell arguments
Maximus
  • 20,745
2

Yes, in the Settings menu, specify the following in the Task parameters:

/icon "C:\PathToYour\TaskIcon.ico"

ConEmu Settings

JackAce
  • 340