-
Notifications
You must be signed in to change notification settings - Fork 175
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Terminal configuration not working #129
Comments
What is your underlying OS? Certain config files may be required to be in places designated by your OS that aren't documented here, and this could help to determine if perhaps placement is the issue. Also for now where did you place the config files/directories? |
Sorry, I thought I had said that I'm using Arch Linux. I put /awesome, /kitty, /fontconfig, /picom and /rofi on ~/.config; .Xresources and .zshrc on ~; and all the fonts on ~/.fonts. But I don't think my problem is only with the fonts, though, since that probably wouldn't make a huge difference on the terminal padding. |
I'm about a month late but I recently ran into what I think were some similar problems and if you're still having the same problems, here are my solutions: The problem with the fonts is that kitty doesn't recognize typicons as a monospace font because it doesn't have the property <match target="scan">
<test name="family">
<string>Your Font Family Name</string>
</test>
<edit name="spacing">
<int>100</int>
</edit>
</match> If that doesn't do it, add The other font looks right to me but if kitty's main font is also wrong, kitty gets its font information from If kitty's background color is wrong (it's not the same color as the titlebar so I'm assuming that's the case), then I think you just need to check your
I'm not sure what you mean by this, your terminal padding looks normal to me, but if you want to change it, |
My reply to your comment seems to be missing, @dorgnarg, so I'm going to rewrite it. Firstly, thank you for your reply! I tried what you suggested and now typicons is included in the list of monospace fonts. This is what I get when I run
I'm aware that I can change the terminal padding on kitty.conf, but given that I am also using Elena's zsh config file I don't understand why her padding looks so different to mine. |
EDIT: See #121 for a similar problem, it looks like editing If you're using the custom Iosevka font (I'm not sure if it makes a difference but it might) and you included the I didn't realize that your prompt looks a little funky too and that's even weirder because I think that should be coming from the NERD fonts not from typicons, and you definitely have a working NERD font. A potential solution to both problems would be to just add the other font names into <alias>
<family>monospace</family>
<prefer>
<family>Iosevka Custom</family>
<family>Typicons</family>
<family>Fira Code Nerd Font Mono</family>
</prefer>
</alias> If that doesn't work, or it messes with your main terminal font, you could try this instead: <alias>
<family>monospace</family>
<prefer>
<family>Iosevka Custom</family>
</prefer>
<accept>
<family>Typicons</family>
<family>Fira Code Nerd Font Mono</family>
</accept>
</alias> One other package I have installed that may be helping me is the
Okay I did some investigating and I may be wrong, but it looks like the most recent time the gallery shows a terminal with a visible prompt (to gauge padding) was in the Skyfall screenshot. At the time the Skyfall theme was released, there was not a kitty config file or folder, and when one was added, it specifically included the margin and padding set to 0. My hunch (I'm at work rn so I can't test for a few hours) is that the padding you have right now is correct to the current dotfile setup, but if you want it to look like the terminal in Skyfall, you can comment out or remove the margin and padding lines in |
I looked at other similar issues but still couldn't find a solution for mine.
I copied the following config files/directories from you: /awesome, /kitty, /fontconfig, /picom, /rofi, .Xresources and .zshrc (only modified in order to use the lena theme). I also downloaded all the necessary fonts plus your custom Iosekva build.
However, my terminal is looking like this.
Note how the padding also looks weird, so the problem is not exclusively with the fonts. How can I solve these issues?
The text was updated successfully, but these errors were encountered: