Official package repository for Inled applications and Pulsar OS.
# 1. Download the GPG key
wget -qO- https://apt.inled.es/archive.key | gpg --dearmor | sudo tee /usr/share/keyrings/inled-archive-keyring.gpg > /dev/null
# 2. Add the repository (choose 'stable' or 'unstable')
# For Stable:
echo "deb [signed-by=/usr/share/keyrings/inled-archive-keyring.gpg] https://apt.inled.es stable main" | sudo tee /etc/apt/sources.list.d/inled.list
# Or for Unstable / Testing:
# echo "deb [signed-by=/usr/share/keyrings/inled-archive-keyring.gpg] https://apt.inled.es unstable main" | sudo tee /etc/apt/sources.list.d/inled.list
# 3. Update and install
sudo apt update
/etc/apt/sources.list.d/inled.list contains a single line and does not end with a trailing slash after stable main.
# Create the config file
sudo tee /etc/yum.repos.d/inled.repo <<EOF
[inled]
name=Inled Repository
baseurl=https://apt.inled.es/rpm/
enabled=1
gpgcheck=1
repo_gpgcheck=1
gpgkey=https://apt.inled.es/archive.key
EOF
# Install packages
sudo dnf install <package>
# 1. Add the repository to /etc/pacman.conf
# (For Stable branch, default):
grep -q '^\[inled\]' /etc/pacman.conf || sudo tee -a /etc/pacman.conf <<EOF
[inled]
SigLevel = PackageRequired
Server = https://apt.inled.es/arch/stable/\$arch
EOF
# (Or for Unstable branch):
# [inled-unstable]
# SigLevel = PackageRequired
# Server = https://apt.inled.es/arch/unstable/\$arch
# 2. Import and sign the GPG key
curl -s https://apt.inled.es/archive.key | sudo pacman-key -a -
sudo pacman-key --lsign-key 89F828A9675B63CD0077CE9965AA57CF36E2018F
# 3. Update the package database
sudo pacman -Sy
# 4. Install any package from the repository
sudo pacman -S <package>
SigLevel = Optional TrustAll in step 1 to avoid importing the key on every boot (less secure, but functional).
appinstall
calamares
dockmigrate
driverman
droidtux
gnome-control-center
gnome-control-center-debug
gnome-keybindings
gnome-macos-remap-wayland
macboat
nautilus
nautilus-debug
pamtester
pulsar-pear-sound-theme
pulsar-store
pulsaros-boot-icons
pulsaros-bootsound
pulsaros-branding
pulsaros-calamares
pulsaros-circle-to-search
pulsaros-cloud
pulsaros-control-center
pulsaros-control-center-button
pulsaros-effects-settings
pulsaros-emoji-fonts
pulsaros-essential
pulsaros-global-menu
pulsaros-gnome
pulsaros-grub
pulsaros-hibernate
pulsaros-live-wallpaper
pulsaros-meta
pulsaros-plymouth
pulsaros-recovery
pulsaros-refind
pulsaros-sddm
pulsaros-spotlight-launcher
pulsaros-theme
pulsaros-timemachine
pulsaros-update
pulsaros-welcome
sayri
scrcpy
seafari
spotlight-gtk
vozes
winboat-bin
xremap-gnome-bin
This repository host the packages of Inled Group.
Maintainers can read the AI agent instructions (Markdown) to integrate applications with this repository.