SuperCuber

Results 94 comments of SuperCuber

Seems pretty simple and useful. Will get to this eventually, maybe after some of the pull requests get merged.

@patrick96 , I think you misunderstood what I wanted - I want to be able to style workspaces on the **same bar** differently based on which monitor they're **assigned to**,...

I have the same issue, and similar errors happen both when using nvim-qt.exe (v0.5.0) from cmd and from git-bash. Example vimrc: ```vim " Plug set runtimepath+=~/.vim call plug#begin("~/.local/share/nvim/plugged") Plug 'tpope/vim-commentary'...

> stdpath('data') . '/plugged' I'll try it out but from the nature of the error I suspect it will persist. >git-bash doesn't influence Neovim Well it clearly does since the...

This happened to me as well when it tried to update several plugins at once (then it failed as described in #1132 after several retries) I think this could be...

Is there anything specific preventing it currently?

I'm not exactly sure what you mean by `create a top most window and the desktop size`, but most games and windowing libraries provide a "true fullscreen" option which changes...

I tried a different approach which didn't work either: ``` # firewall-cmd --get-active-zones docker interfaces: docker0 public interfaces: ens3 # firewall-cmd --list-all public (active) target: default icmp-block-inversion: no interfaces: ens3...

So I tried changing the code to this: ```rust let child = Command::new("ffmpeg") .args(...) .args(&["-f", "f32le", "-acodec", "pcm_f32le", "-"]) .output().unwrap(); let reader = Reader::Vec(Cursor::new(child.stdout)); let track = call.play_only_source(Input::new( true, reader,...

I found this code: lemme try copy it. https://docs.rs/songbird/0.1.8/src/songbird/input/ffmpeg_src.rs.html#41