~gammafn

gitlab.com/xPMo github.com/xPMo


#8 [Feature]: Support toplevel unset_fullscreen 3 years ago

Ticket created by ~gammafn on ~brocellous/wlrctl

Currently, wlrctl toplevel fullscreen ... will send the set_fullscreen request to the compositor. Add wlrctl toplevel unfullscreen ... to send the unset_fullscreen request.

#495 edit from 4 years ago

on ~sircmpwn/aerc2

REPORTED RESOLVED INVALID

#495 edit from 4 years ago

Ticket created by ~gammafn on ~sircmpwn/aerc2

#116 wish: ssh mode 4 years ago

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.

#126 wish: Equivalent of fzf's --with-nth flag in --dmenu mode 4 years ago

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'