pkulak / filtile

A layout manager for the River window manager.
GNU General Public License v3.0
11 stars 2 forks source link

`--tags all` not working #8

Closed itshog closed 5 months ago

itshog commented 6 months ago

Hello, I recently noticed that the --tags all flag doesn't work properly. For instance, the command

riverctl send-layout-cmd filtile "--tags all view-padding 10"

doesn't work, while these work as expected:

riverctl send-layout-cmd filtile "view-padding 10"              # current tag
riverctl send-layout-cmd filtile "--tags 1 view-padding 10"     # tag 1     
riverctl send-layout-cmd filtile "--tags 4 view-padding 10"     # tag 3

Maybe I'm doing something wrong about the syntax, in which case I'd appreciate being pointed in the right direction.

Thanks in advance.

pkulak commented 5 months ago

Oh, nice catch, thank you. I was being really sloppy with the distinction between "no option provided" and "the option of 'all' provided". It should be fixed on master.

itshog commented 5 months ago

It seems to be working fine now. Thank you!