this post was submitted on 22 Mar 2024
252 points (81.5% liked)

linuxmemes

21009 readers
629 users here now

Hint: :q!


Sister communities:


Community rules (click to expand)

1. Follow the site-wide rules

2. Be civil
  • Understand the difference between a joke and an insult.
  • Do not harrass or attack members of the community for any reason.
  • Leave remarks of "peasantry" to the PCMR community. If you dislike an OS/service/application, attack the thing you dislike, not the individuals who use it. Some people may not have a choice.
  • Bigotry will not be tolerated.
  • These rules are somewhat loosened when the subject is a public figure. Still, do not attack their person or incite harrassment.
  • 3. Post Linux-related content
  • Including Unix and BSD.
  • Non-Linux content is acceptable as long as it makes a reference to Linux. For example, the poorly made mockery of sudo in Windows.
  • No porn. Even if you watch it on a Linux machine.
  • 4. No recent reposts
  • Everybody uses Arch btw, can't quit Vim, and wants to interject for a moment. You can stop now.

  • Please report posts and comments that break these rules!

    founded 1 year ago
    MODERATORS
     
    you are viewing a single comment's thread
    view the rest of the comments
    [–] [email protected] 7 points 6 months ago (2 children)

    I have a small script to toggle the visibility of a window when I press a hotkey. Press once, it launches the app if it's not running, or unhides and raises the window if it is. Press again, it hides the window.

    My distro recently switched KDE to Plasma 6 on Wayland, and of course the script stopped working. Researched how to make a Wayland equivalent. You can't. It's literally impossible to hide (or even minimize) windows from the command line.

    [–] [email protected] 11 points 6 months ago* (last edited 6 months ago)

    The compositor will have to implement a CLI. Sway has an IPC socket and CLI just like i3 and I can use this to hide windows.

    [–] [email protected] 2 points 6 months ago

    Untested partial solution that you may already have tried:

    1. In the window manager's keyboard settings, create keybinds for raising and lowering windows.

    2. Create a script that uses dotool, a third party tool which can send keyboard events and mouse movements, to call the previously configured keybinds.

    3. Missing bit: Figuring out whether the window is raised or lowered to know which keybind to send.

    The author of dotool says that they wrote it because ydotool (the alleged successor to xdotool, I assume), needs root and a background daemon. That said, the linked page seems to indicate that dotool also needs some permissions.

    I'm not affiliated with either.