windows
yal
access and search windows
access files, programs, bookmarks, search engines
macos
finda
find windows, browser tabs, code editor buffers, browser history, apps, files
linux
kupfer plugin window list
use xdotool and wmctrl
Window List command (wmctrl):
1 | $ wmctrl -lx |
Command to switch to specific window (xdotool)
1 | $ xdotool windowactivate 0x0540043e |
The above command will switch to the Windows with the ID 0x0540043e, which is specific from the list for this Askubuntu message entry.
They are both in the repository:
1 | $ sudo apt install wmctrl xdotool |