qmk / qmk_fpm

Infrastructure to package the QMK CLI for various operating systems

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

QMK FPM

This repo exists to generate packages for the QMK cli.

Usage instructions

Debian-like, or Ubuntu-like distributions

# Add the QMK source to your apt repositories list:
echo "deb https://linux.qmk.fm/ $(lsb_release --codename --short) main" | sudo tee /etc/apt/sources.list.d/qmk.list

# Add the QMK GPG Key:
wget -qO - https://linux.qmk.fm/gpg_pubkey.txt | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/qmk-gpg-pubkey.gpg > /dev/null

# Update apt:
sudo apt update

# Install QMK:
sudo apt install qmk

Fedora

# First install the QMK pubkey:
sudo rpm --import https://linux.qmk.fm/gpg_pubkey.txt

# Install the package for your version:
dnf install https://linux.qmk.fm/dists/fedora/$(lsb_release --short --release)/qmk-1.1.5-1.noarch.rpm

About

Infrastructure to package the QMK CLI for various operating systems

License:MIT License


Languages

Language:Shell 64.4%Language:Python 35.6%