Manjaro Awesome Repository

Official pacman package repository for the Manjaro Awesome Respin project.

This server hosts binary packages used by the custom Manjaro ISO and related tooling.

Main Project

GitHub (sources, profiles, CI):
github.com/megvadulthangya/iso-profiles

ISO downloads (SourceForge):
sourceforge.net/projects/manjaro-awesome-iso

Pacman Repository

This repository is cryptographically signed and intended for Manjaro-based systems.

One-click install

Click the button below to copy the full installation script to your clipboard. Paste it into a terminal and run it.
You will be prompted for your password if required.

#!/usr/bin/env bash

if [[ $EUID -ne 0 ]]; then
  echo "==> Root privileges required, requesting sudo..."
  exec sudo bash -s <<'EOF'
set -euo pipefail

REPO_NAME="manjaro-awesome"
REPO_FILE="/etc/pacman.d/manjaro-awesome"
PACMAN_CONF="/etc/pacman.conf"
KEY_URL="https://repo.gshoots.hu/manjaro-awesome/x86_64/manjaro-awesome.pub"

echo "==> Installing Manjaro Awesome repository"

echo "==> Importing GPG key"
curl -fsSL "$KEY_URL" | pacman-key --add -
pacman-key --lsign-key "$REPO_NAME" 2>/dev/null || true

echo "==> Creating repository file"
install -Dm644 /dev/stdin "$REPO_FILE" <<'EOR'
Server = https://repo.gshoots.hu/$repo/$arch
EOR

if ! grep -q "^\[$REPO_NAME\]" "$PACMAN_CONF"; then
  echo "==> Registering repository before [extra]"
  sed -i "/^\[extra\]/i \
[$REPO_NAME]\n\
SigLevel = PackageRequired\n\
Include = $REPO_FILE\n" "$PACMAN_CONF"
else
  echo "==> Repository already present"
fi

echo "==> Syncing package databases"
pacman -Sy

echo "==> Done."
EOF
fi

Supported architecture: x86_64

Notes

• Actively maintained
• Packages are built and published via automated CI/CD
• Intended for Manjaro Stable base systems