Skip to content

v2.0.11

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 16 Jul 08:46
· 62 commits to 7f22204944cf700e8a9d4daa4f1d5817dd0d1195 since this release
  • Support for KDE Plasma 5 & 6 (KWin, currently Wayland only).
  • Reworked how apps are started (mostly when WTQ starts), should fix a lot of cases where multiple instances of an app (such as Windows Terminal) are started (fixes 145).
  • Added WindowTitleOverride, which attempts to set the title of a window. Useful for "tagging" a window as being managed by WTQ, so they can be filtered out in other applications (see #144).
{
  "Apps": [
    {
      "Name": "Terminal",
      "WindowTitleOverride": "The New Window Title"
    },
    ...
  ]
}
  • Added other off screen locations, to support vertically-stacked monitors (see #146).

WTQ will look for an empty space outside of the screen, starting above, then below, then to the left, then to the right. Whichever location that does not overlap with a screen wins, in order.

The order can be changed using the "OffScreenLocations" setting:

{
  "Apps": [
    {
      // Per app:
      "Name": "Terminal",
      "OffScreenLocations": ["Above", "Below", "Left", "Right"]
    },
    ...
  ],

  // ..or globally:
  "OffScreenLocations": ["Above", "Below", "Left", "Right"]
}