gitlab.com/xPMo github.com/xPMo
Ticket created by ~gammafn on ~brocellous/wlrctl
Currently,
wlrctl toplevel fullscreen ...
will send theset_fullscreen
request to the compositor. Addwlrctl toplevel unfullscreen ...
to send theunset_fullscreen
request.
Comment by ~gammafn on ~scoopta/wofi
If custom dmenu-based modes can be combined with the built-in modes, It's not clear how.
I think that can be addressed in the manpage; I sent a quick patch for it.
Ticket created by ~gammafn on ~scoopta/wofi
Rationale: This is useful when both a human-readable name and ID or index are given on stdin. The ID can be hidden in the selection dialog, but the ID is still printed by wofi.
Examples:
Selecting a window in Sway by name, but then using the ID later in the script:
swaymsg -t get_tree | jq -r 'ommited for brevity | (.id | tostring) + "\t" + .name + " " + .app_id'Compare
| wofi --dmenu
with| fzf --with-nth=2..
Bitwarden CLI, select by name, using the ID to select the password.
bw list items | jq -r '.[] | .id + "\t" + .name'