nick87720z

Results 88 comments of nick87720z

Tried hard to remember, what problem was in 2013.... ) Probably it is user-specific, or already fixed in pa or jack. On my laptop PA always starts in stereo mode....

Though it is not exactly what is requested above, how above slightly more different way, with full chain (de)selection? I.e. consider following assumpted configuration: clients A, C with stereo outputs...

I got working both variants, but it is for carla. Full-chain selection was just simpliest, comparing to pair-selection, but it is for carla. Waiting for falktx reply - wether it...

w3m could be workaround in terminal, since it can scroll contents. But it fails to show colors (despite receiving html) and png - only basic format and only mono. There...

sed's y command is able to filter unicode, not just ascii. I used such trick to get rounded corners in vte terminals (or other terms, supporting line drawing).

Ok I have to note yet - these features (tsl/fsl) are not included in most TERM types, suitable to be set in terminals (like xterm, xterm-256color, mlterm, vte). Instead there...

What do you think about such pipeline for `clipmenu`: ``` sh LC_ALL=C sort -ruk 2 < "$cache_file" | LC_ALL=C sort -rnk 1 | sed 's/^[^ ]* //' ``` When I...

3 more ways for awk dedup: ``` sh LC_ALL=C sort -rnk 1 < "$cache_file" | awk -v FS='^[^ ]* ' '!seen[$2]++ {print $2}' LC_ALL=C sort -rnk 1 < "$cache_file" |...

The reason for variant with two sorts to be slow - sort is not so fast with stdin. May be solved by using temporary file, however it will eat space....

Rofi script modi would be more useful - could be possible to operate with menu continuoustly, without restarting after each operation - e.g. remove multiple items, one after one, seeing...