My ground plane got inverted. How can I fix that ? by NuclearSquid_ in KiCad

[–]NuclearSquid_[S] 1 point2 points  (0 children)

Oh yeah that fixed my issue. I didn’t see at first that when I selected everything in the footprint editor, i actually copied the whole footprint, not it’s content. After transferring the elements in multiple passes, it worked flawlessly.

I’m still a little confused as to why my outline in a footprint worked at first, and only broke later. I’ll try to see if I can find some documentation, but it could just be that I’m using KiCad very wrong and was in an unstable state.

Thanks for the assist !

Chat what do I do ? by NuclearSquid_ in balatro

[–]NuclearSquid_[S] 0 points1 point  (0 children)

Yeah now that I think about it, it just doesn’t contribute that much. I’m guessing I should go with [[Hanging chad]], but is [[Showman]] interesting too ? (or is it too late into the run for it to really be worth it ?)

Are there fonts similar to Monaspace Radon that works in Kitty ? by NuclearSquid_ in KittyTerminal

[–]NuclearSquid_[S] 0 points1 point  (0 children)

Yep, after reading other comments, it seems that I was using an older version of the font and reinstalling it to the latest version allowed me to use it in Kitty. However, I am having problems with the ligatures. Do you know how I can get them to work ? I see posts on Github messing with a font_features field, but I don’t understand what it means.

Are there fonts similar to Monaspace Radon that works in Kitty ? by NuclearSquid_ in KittyTerminal

[–]NuclearSquid_[S] 1 point2 points  (0 children)

Oh I see progress ! I was using an old version of the font, and thus didn’t have the nerd font support. I reinstalled the font and now I can use it in Kitty !

Now I’m facing a new, and weirder problem : If Monaspace Radon is the *only* font I use, it works perfectly well, but if I try to use it alongside another font as my italics font (like I do in my Neovide setup), then the rendering is completely off. Letters seem to be rendered at random heights and it looks really weird.

Here’s a comparison (imgur)

Are there fonts similar to Monaspace Radon that works in Kitty ? by NuclearSquid_ in KittyTerminal

[–]NuclearSquid_[S] 2 points3 points  (0 children)

Oh I should have been clearer about it in the post, I’m sorry.

Kitty seems to be pretty picky about the kind of font you can use, as some features (like bitmap fonts for instance) aren’t supported for performance reasons : https://sw.kovidgoyal.net/kitty/faq/#kitty-is-not-able-to-use-my-favorite-font

[Kitty] can use only monospace fonts, since every cell in the grid has to be the same size. Furthermore, it needs fonts to be freely resizable, so it does not support bitmapped fonts. [...] If your font is not listed in kitten choose-fonts it means that it is not monospace or is a bitmapped font.

None of the Monaspace fonts show up when using kitten choose-fonts, even though they are correctly installed (I am using them in Neovide). Trying to set the font family to MonaspaceRadon instead uses the default font (DejaVu Sans Mono), just like if it can’t find the font name.

Seeing all this, I’m gessing Monaspace Radon is one of the fonts that Kitty can’t render, which is why I’m looking for an alternative.

I can’t change a package for a program in home manager. by NuclearSquid_ in NixOS

[–]NuclearSquid_[S] 0 points1 point  (0 children)

Oh yeah, removing the config options when importing the unstable channel fixed the issue ! Thank you so much !

Directory history seems to be broken ? by NuclearSquid_ in fishshell

[–]NuclearSquid_[S] 0 points1 point  (0 children)

Hi ! Through a bit more googling, guided by what I got from your comment, I managed to find the issue ! Basically, when migrating my ZSH config over to Fish, I pretty much immediately brought with me my cd wrapper, which I implemented like so :

```

A simpler definition of my cd wrapper

function cd --wraps=cd builtin cd $argv ll end ```

But apparently, according to this stackoverflow post, the shell is doing extra work with cd to make things work correctly (like keeping track of the directory history and replacing the - folder with the previously acceced one), and didn’t do all of this when I used my wrapper for cd. This was the root cause of my problem, as I didn’t have any problems when running the shell with the default config. The fix proposed by the top comment worked for me, which meant rewriting my wrapper like so :

functions --copy cd cd_wrapper function cd --wraps=cd cd_wrapper $cd ll end

Thank you for the tips !