I was puzzled why there were pipe and square bracket characters in my Cinnamon window titles in the panel.
Eg. Firefox window title showing as "| Firefox" or "[ Firefox ]"
Why are they there, and how to disable?
I was puzzled why there were pipe and square bracket characters in my Cinnamon window titles in the panel.
Eg. Firefox window title showing as "| Firefox" or "[ Firefox ]"
Why are they there, and how to disable?
A Cinnamon desktop applet adds special characters to show the status of the Windows.
If you want to remove these special characters from the window names:
/usr/share/cinnamon/applets/[email protected]/applet.js
If you don't want any of the special characters, comment out the whole block with /* */, like this:
/*
if (this.metaWindow.minimized) {
title = "["+ title +"]";
} else if (this.metaWindow.tile_type == Meta.WindowTileType.TILED) {
title = "|"+ title;
}
else if (this.metaWindow.tile_type == Meta.WindowTileType.SNAPPED) {
title = "||"+ title;
}
*/
Your window names shouldn't contain any special characters now.