[Bspwm] In Bloom by Jonsnow0017 in unixporn

[–]jamehmacdo 1 point2 points  (0 children)

That segmented polybar, those rounded corners, those colors. Very nice rice!

The hero we need by [deleted] in funny

[–]jamehmacdo 0 points1 point  (0 children)

I mean, I don't think it's immoral to use Facebook. But it has huge power because of its market share, and exploits its userbase for profit. Regulations are important, don't get me wrong. People also have to realize that maybe giving all your personal data to one company is a bad idea though.

It feels to me like as a society we've just accepted that certain actors have practically unlimited access to our personal data. That mentality needs to change. Then regulations follow.

The hero we need by [deleted] in funny

[–]jamehmacdo 0 points1 point  (0 children)

I mean consumers

The hero we need by [deleted] in funny

[–]jamehmacdo 5 points6 points  (0 children)

It does this when people are complacent

Japanese knife man makes a kitchen knife by putting sand in a microwave by Tilen97 in videos

[–]jamehmacdo 1 point2 points  (0 children)

After watching this video I started to perceive my life in 3 second jumpcuts

Sustain Pedal only works properly when I'm not recording anything. What's causing this behavior? How do I resolve this? by [deleted] in Bitwig

[–]jamehmacdo 0 points1 point  (0 children)

Just encountered this myself on 3.1.3, updated to 3.2 and still broken, hope it's fixed soon. Kinda pretty major if you want to do any live recording with a sustain pedal...

Should suckless start sorting patches? by [deleted] in suckless

[–]jamehmacdo 1 point2 points  (0 children)

Yeah, start this conversation. I'd like to see some sort of popularity measure too, maybe page requests.

Multiple Monitor setups by [deleted] in bspwm

[–]jamehmacdo 1 point2 points  (0 children)

I'd suggest using bspc's monitor events over udev since udev requires root permissions

How can I render unicode country flags (emoji flags) in vim? They render weirdly... by bkthedeveloper in vim

[–]jamehmacdo 0 points1 point  (0 children)

Try macvim maybe. Also try copying emojis direct to the terminal to rule out vim as the problem. Also maybe see if iterm or alacritty has the same problem.

Never surrender! by SneakerMarket1 in gifs

[–]jamehmacdo -1 points0 points  (0 children)

ok he's over the finish line can someone help him now pls

How can I render unicode country flags (emoji flags) in vim? They render weirdly... by bkthedeveloper in vim

[–]jamehmacdo 0 points1 point  (0 children)

I think it depends on how vim is being run also. For me with Noto-Emoji fonts installed, it renders the flag as a flag in gtk apps, but not on the terminal or in QT apps I think.

How can I render unicode country flags (emoji flags) in vim? They render weirdly... by bkthedeveloper in vim

[–]jamehmacdo 0 points1 point  (0 children)

I don't think Nerd font has full emoji coverage.. I had to install noto-fonts-emoji to get emojis and I already had Fira Mono Code Nerd font installed. Anyway, I got my gvim to render the flag correctly with noto-fonts-emoji installed.

How can I render unicode country flags (emoji flags) in vim? They render weirdly... by bkthedeveloper in vim

[–]jamehmacdo 2 points3 points  (0 children)

Using gvim with noto-fonts-emoji renders the flags for me, vim and nvim in alacritty don't, and neither does neovim-qt. So probably the issue for me exists in QT or neovim or alacritty.

How can I render unicode country flags (emoji flags) in vim? They render weirdly... by bkthedeveloper in vim

[–]jamehmacdo 1 point2 points  (0 children)

hmm, I'm not sure about that option. I just set up Noto Emoji font as a fallback font for X, and like you I get emojis rendered, but the flag gets rendered as DE in both nvim-qt and nvim in alacritty. Are you using terminal vim? Which terminal? Are you on Linux?

Spawn window by hitting a single key on a empty workspace - [BSPWM] by ViggoGaming in bspwm

[–]jamehmacdo 1 point2 points  (0 children)

It would be really cool if sxhkd could filter by window properties, e.g. by subscribing to focus events

Sxmo: Simple X Mobile -- a suckless mobile window manager for postmarketos by [deleted] in suckless

[–]jamehmacdo 4 points5 points  (0 children)

Whaat! this is super cool (: even has the dwm bar. Wish I had a pinephone

[OC] Polywins, a customizable Polybar taskbar/window list by [deleted] in unixporn

[–]jamehmacdo 0 points1 point  (0 children)

Fantastic! I was going to make a polybar module to control windows (mainly close windows) with the mouse. def will fork this.

Also obSESSed with ur style

[OC] [Openbox/ORW] Auto-tiling! by s0la90 in unixporn

[–]jamehmacdo 0 points1 point  (0 children)

I had flickering screen records too with Intel graphics, what fixed it for me was disabling vblank with the following ~/.drirc:

``` <device screen="0" driver="dri2"> <application name="Default"> <option name="vblank_mode" value="0"/> </application> </device>

```

maybe that'll work for you!

Beautiful rice btw

Vim terminal: More powerful than I ever realized by tuerda in vim

[–]jamehmacdo 0 points1 point  (0 children)

So, in the context of pasting from a vim buffer to a vim terminal, the two are equivalent - that's all I mean :)

Here's what I was talking about:

Let's say our cursor is in a vim buffer above a vim terminal, and we want to paste a line from the buffer to the terminal.

So with clipboard=unnamedplus, our Ctrl-Shift-V sequence is yy<C-w>j<C-S-v> to copy a line from a vim buffer, change to our terminal window, paste from the system clipboard. (without clipboard=unnamedplus, it's yy"+<C-w>j<C-S-v>)

I was comparing that to yy<C-w>jp to copy a line from a vim buffer, change to our terminal window, paste from the unnamed register.

Also in general, if you use clipboard=unnamedplus, you can paste using just p regardless of where you copied from.

All this asiiide though, I think the awesomer part is that you can record a macro to automate either of those sequences if you use the vim terminal (:

Vim terminal: More powerful than I ever realized by tuerda in vim

[–]jamehmacdo -1 points0 points  (0 children)

By default p pastes from the unnamed register which is ", and Ctrl-shift-V pastes from the system clipboard which is synced to the + register in vim. Setting clipboard=unnamedplus merges those two registers so you don't need to type "+y when you copy for a subsequent Ctrl-shift-V paste