-
|
So I'm trying to make a keybind that would toggle visibility of floating clients by running |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
|
Maybe introduce an IPC request?? idk |
Beta Was this translation helpful? Give feedback.
-
|
There is a The command So I think the only possible way for now to do what you want is to create a Lua script and store some state in it, so when you call |
Beta Was this translation helpful? Give feedback.
There is a
filtercommand, but the command is just for convenience, it exposes a small part of the functionality. Underneath, there are general filters that can display anything by setting specific filter functions. For example, the animation that happens when switching workspaces uses these filters too.The command
filtersimply configures a set of these filter functions depending on its arguments. And other commands may configure and make current a different set.So I think the only possible way for now to do what you want is to create a Lua script and store some state in it, so when you call
toggle, it knows what you want to do.