Back

Oh my posh

Prompt theme engine.

You can install this script by running the following command in your terminal.

curl -sL https://setup.mraddict.vercel.app/api/script/omp | bash

Below is the raw script content, which you can also get from the command above from the api https://setup.mraddict.vercel.app/api/script/omp.

#! /bin/bash

# 0. Install unzip
if ! command -v unzip &>/dev/null ; then
  echo "[INFO] Installing unzip..."
  sudo apt install unzip -y &>/dev/null
fi

# 1. Install omp
if ! command -v oh-my-posh &>/dev/null ; then
  echo "[INFO] Installing oh-my-posh..."
  sudo wget -q https://github.com/JanDeDobbeleer/oh-my-posh/releases/latest/download/posh-linux-amd64 -O /usr/local/bin/oh-my-posh
  sudo chmod +x /usr/local/bin/oh-my-posh
else
  echo "[WARN] You have already installed oh-my-posh!"
fi

# 2. Istall hack fonts
# echo "[INFO] Installing hack fonts..."
# sudo apt-get -y install fonts-hack-ttf &>/dev/null

# 3. Install themes
if [ ! -d /home/$USER/.poshthemes ] ; then
  echo "[INFO] Installing oh-my-posh themes..."
  mkdir /home/$USER/.poshthemes
  wget -q https://github.com/JanDeDobbeleer/oh-my-posh/releases/latest/download/themes.zip -O /home/$USER/.poshthemes/themes.zip
  unzip -q -o /home/$USER/.poshthemes/themes.zip -d /home/$USER/.poshthemes
  chmod u+rw /home/$USER/.poshthemes/*.omp.*
  rm /home/$USER/.poshthemes/themes.zip
else
  echo "[WARN] You have already installed oh-my-posh themes!"
fi

# 4. Config bash
if ! grep -q oh-my-posh /home/$USER/.bashrc ; then
  echo "[INFO] Configurating oh-my-posh for bash..."
  sed -i "$ a\eval \"\$(oh-my-posh --init --shell bash --config /home/$USER/.poshthemes/amro.omp.json)\"" /home/$USER/.bashrc
  source /home/$USER/.bashrc
else
  echo "[WARN] You have already configurated oh-my-posh for $USER!"
fi

if ! sudo grep -q oh-my-posh /root/.bashrc ; then
  sudo sed -i "$ a\eval \"\$(oh-my-posh --init --shell bash --config /home/$USER/.poshthemes/amro.omp.json)\"" /root/.bashrc
  source /root/.bashrc
else
  echo "[WARN] You have already configurated oh-my-posh for root!"
fi