Linux

2 Beiträge

Powerline font on console in Fedora

I use zsh with ohmyszsh on all my Linux systems. It requires the powerline fonts to be installed. To use it on the consoles (as in Ctrl+Alt+Fx) follow these steps in Fedora to activate it. First we need to download the fonts, we do that by cloning the git repository. Go to a folder where you want to save the repository.

git clone https://github.com/powerline/fonts powerline-fonts
cd powerline-fonts/Terminus/PSF
sudo cp *.psf.gz /usr/lib/kdb/consolefonts
sudo nano /etc/vconsole.conf

Set the Font size you like i.e.

FONT="ter-pwerline-v24b"

TO test it temporarily you can use

setfont ter-powerline-v24b.psf.gz

“Oh my zsh” in der Windows 10 Terminal App nutzen mit Ubuntu Farbschema

Hier eine kurze Anleitung wie man “Oh my zsh” in der neuen Windows Terminal App unter Windows 10 nutzen kann.

    1. Powerline Fonts installieren. Dazu Powershell öffnen (oder wenn ihr kein git installiert habt die ZIP Datei runterladen):
      git clone https://github.com/powerline/fonts.git
    2. Installationsskript für die Fonts ausführen (als Admin in Powershell):
      Set-ExecutionPolicy Bypass
      .\install.ps1
    3. Terminal App Öffnen und Einstellungen wählen.
    4. Das Ubuntu Farbschema einfügen unter “schemes”
      {
                  "name": "Ubuntu Terminal",
                  "black": "#2e3436",
                  "red": "#cc0000",
                  "green": "#4e9a06",
                  "yellow": "#c4a000",
                  "blue": "#3465a4",
                  "purple": "#75507b",
                  "cyan": "#06989a",
                  "white": "#d3d7cf",
                  "brightBlack": "#555753",
                  "brightRed": "#ef2929",
                  "brightGreen": "#8ae234",
                  "brightYellow": "#fce94f",
                  "brightBlue": "#729fcf",
                  "brightPurple": "#ad7fa8",
                  "brightCyan": "#34e2e2",
                  "brightWhite": "#eeeeec",
                  "background": "#300a24",
                  "foreground": "#eeeeec"
                }
    5.  In eurem Ubuntu Profil Farbschema und Font konfigurieren:
       "colorScheme" : "Ubuntu Terminal",
       "fontFace" : "Ubuntu Mono derivative Powerline",
    6. Benötigte Pakete in Ubuntu installieren:
      sudo apt-get install zsh git curl
    7. zsh einrichten
      which zsh

      und den Pfad in

      chsh

      nutzen

    8. Oh my zsh installieren:
      sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
    9. Theme konfigurieren. Ich nutze z.B. gerne “agnoster”
      Dazu in der .zshrc die Zeile

      ZSH_THEME="<theme-name>"

      entsprechend anpassen

Oh my zsh