The dash-to-dock extension for GNOME allows you to customize the dock (taskbar) behavior, including how it displays open windows for applications. By default, it groups windows and shows a maximum of 4 dots (indicators) for each application, even if more than 4 windows are open.
To make dash-to-dock show strictly more than 4 dots for a given program when there are more than 4 instances, you need to tweak its settings. Here’s how you can do it:
You’ll need to edit the GNOME settings using dconf or gsettings. If you prefer a GUI, you can install dconf-editor:
bashsudo apt install dconf-editor # For Debian/Ubuntu
Or use the command line directly.
Open a terminal and run the following command to set the maximum number of dots (indicators) for each application:
bashgsettings set org.gnome.shell.extensions.dash-to-dock max-dots-per-app 10
Replace 10 with the number of dots you want to display (e.g., 5, 6, etc.).
If you want each window to appear as a separate icon (instead of grouping them under one icon with dots), run:
bashgsettings set org.gnome.shell.extensions.dash-to-dock isolate-workspaces false gsettings set org.gnome.shell.extensions.dash-to-dock isolate-monitors false gsettings set org.gnome.shell.extensions.dash-to-dock multi-monitor false gsettings set org.gnome.shell.extensions.dash-to-dock show-windows-preview false gsettings set org.gnome.shell.extensions.dash-to-dock show-apps-at-top true gsettings set org.gnome.shell.extensions.dash-to-dock show-trash false gsettings set org.gnome.shell.extensions.dash-to-dock show-mounts false gsettings set org.gnome.shell.extensions.dash-to-dock show-favorites false gsettings set org.gnome.shell.extensions.dash-to-dock show-running false gsettings set org.gnome.shell.extensions.dash-to-dock group-windows-by-app false
Note: Disabling grouping will show each window as a separate icon, which may clutter your dock.
After making changes, restart GNOME Shell to apply them:
bashkillall -3 gnome-shell
Or log out and log back in.
Open more than 4 instances of your program and check if the dock now shows more than 4 dots (or separate icons, depending on your settings).