mirror of
https://github.com/arabianq/pipewire-soundpad.git
synced 2026-09-21 06:23:33 +00:00
Compare commits
102
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9f1122842f | ||
|
|
0c106a2316 | ||
|
|
a45c20d6a0 | ||
|
|
e393e71c34 | ||
|
|
6fc85a3178 | ||
|
|
8d8e2de0a5 | ||
|
|
738ce8f76d | ||
|
|
3f53ee31cf | ||
|
|
fb6ab8e751 | ||
|
|
ef7803c9eb | ||
|
|
331b44231b | ||
|
|
ea003ce24d | ||
|
|
3ed7f155c7 | ||
|
|
ace9dafeec | ||
|
|
f5e4b3a145 | ||
|
|
8a2175d0ea | ||
|
|
8166cd9d20 | ||
|
|
5052bf787b | ||
|
|
e18cf9607e | ||
|
|
90a7a5a2d5 | ||
|
|
6f523b7a6b | ||
|
|
34973cd4ad | ||
|
|
a5a605bfc8 | ||
|
|
a61dc9f8be | ||
|
|
6e3554e403 | ||
|
|
bcb6f1f92a | ||
|
|
69b1a5860b | ||
|
|
929199b981 | ||
|
|
b781f03484 | ||
|
|
d2e8de422a | ||
|
|
69e9a4b5b6 | ||
|
|
d780985d15 | ||
|
|
992e5bf8d8 | ||
|
|
7c3cad6e6e | ||
|
|
10fc6d84c9 | ||
|
|
5d262ba412 | ||
|
|
7ff3cd3a0e | ||
|
|
6409e041ff | ||
|
|
c3feb3fc06 | ||
|
|
8fa1d56fc4 | ||
|
|
0611a22f83 | ||
|
|
b0640d7809 | ||
|
|
3d34ec6e98 | ||
|
|
004ae0907d | ||
|
|
7a19d79d08 | ||
|
|
a2aeab5a16 | ||
|
|
5a87f06e16 | ||
|
|
b6d5cfcd0c | ||
|
|
42e8723977 | ||
|
|
26e5d8b02a | ||
|
|
af5a7851ed | ||
|
|
454ab9b3a6 | ||
|
|
4e92298873 | ||
|
|
437d7fdb4e | ||
|
|
39816a4dbe | ||
|
|
93f3460e2d | ||
|
|
f1ac8b91d7 | ||
|
|
e1f12f5ce4 | ||
|
|
6ca239ffc9 | ||
|
|
0599e38625 | ||
|
|
ddaee8c1e9 | ||
|
|
fcde9614e2 | ||
|
|
b51f453ec3 | ||
|
|
758f685413 | ||
|
|
702acccb55 | ||
|
|
9d4d5016fa | ||
|
|
39b726f8c4 | ||
|
|
bb57bfb1a8 | ||
|
|
183c961710 | ||
|
|
b985132ed7 | ||
|
|
f79614da75 | ||
|
|
12f986db1e | ||
|
|
c826b7ae4d | ||
|
|
dc9fc64a16 | ||
|
|
c4776c43eb | ||
|
|
b091c65935 | ||
|
|
e08de17e64 | ||
|
|
868b6ce432 | ||
|
|
8b991d56a9 | ||
|
|
e796a2248d | ||
|
|
406f9957f4 | ||
|
|
2d37280217 | ||
|
|
563aa1d90c | ||
|
|
9a74eeb14b | ||
|
|
a672127081 | ||
|
|
2b95b5040b | ||
|
|
125dbd3f8f | ||
|
|
dae190dd5f | ||
|
|
964205907a | ||
|
|
c1a7d050ab | ||
|
|
8556b27f0d | ||
|
|
3c8722d1f6 | ||
|
|
ebfb5d402c | ||
|
|
6d31f503b9 | ||
|
|
bd0f1a941d | ||
|
|
955a696cbc | ||
|
|
1597cb67fd | ||
|
|
0cb31d6e89 | ||
|
|
8128036313 | ||
|
|
0adf869d5c | ||
|
|
1d1df22920 | ||
|
|
ed4bfa7d1b |
@@ -1 +0,0 @@
|
|||||||
custom: ['https://boosty.to/arabian']
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
version: 2
|
|
||||||
updates:
|
|
||||||
- package-ecosystem: "cargo"
|
|
||||||
directory: "/"
|
|
||||||
schedule:
|
|
||||||
interval: "weekly"
|
|
||||||
@@ -1,121 +0,0 @@
|
|||||||
name: Build
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
contents: write
|
|
||||||
packages: write
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches: [main, master]
|
|
||||||
pull_request:
|
|
||||||
branches: [main, master]
|
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
linux-build:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Install apt deps (jq/zip + dev-libs)
|
|
||||||
run: |
|
|
||||||
sudo apt-get update
|
|
||||||
sudo apt-get install -y \
|
|
||||||
zip jq \
|
|
||||||
libpipewire-0.3-dev \
|
|
||||||
libclang-dev \
|
|
||||||
libasound2-dev \
|
|
||||||
libdbus-1-dev \
|
|
||||||
pkg-config
|
|
||||||
|
|
||||||
- name: Checkout code
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
|
|
||||||
- name: Setup Rust toolchain
|
|
||||||
uses: actions-rs/toolchain@v1
|
|
||||||
with:
|
|
||||||
toolchain: 1.94.1
|
|
||||||
|
|
||||||
- name: Extract all binary names
|
|
||||||
id: cargo-meta
|
|
||||||
run: |
|
|
||||||
set -euo pipefail
|
|
||||||
BIN_NAMES=$(cargo metadata --no-deps --format-version 1 \
|
|
||||||
| jq -r '.packages[0].targets[] | select(.kind[] | contains("bin")) | .name')
|
|
||||||
echo "bin_names<<EOF" >> $GITHUB_OUTPUT
|
|
||||||
echo "$BIN_NAMES" >> $GITHUB_OUTPUT
|
|
||||||
echo "EOF" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- name: Build all binaries
|
|
||||||
run: cargo build --locked
|
|
||||||
|
|
||||||
- name: Package all binaries into one archive
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
set -euo pipefail
|
|
||||||
COMMIT_SHA="${{ github.sha }}"
|
|
||||||
ARCHIVE_NAME="pwsp-${COMMIT_SHA}-linux-x64.zip"
|
|
||||||
echo "Creating archive: $ARCHIVE_NAME"
|
|
||||||
|
|
||||||
FILES=()
|
|
||||||
while IFS= read -r BIN; do
|
|
||||||
[ -z "$BIN" ] && continue
|
|
||||||
FILES+=("target/debug/$BIN")
|
|
||||||
done <<< "${{ steps.cargo-meta.outputs.bin_names }}"
|
|
||||||
|
|
||||||
if [ "${#FILES[@]}" -eq 0 ]; then
|
|
||||||
echo "Error: no binaries were discovered via cargo metadata." >&2
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
for f in "${FILES[@]}"; do
|
|
||||||
if [ ! -f "$f" ]; then
|
|
||||||
echo "Error: expected binary not found: $f" >&2
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
echo "Will add: $f"
|
|
||||||
done
|
|
||||||
|
|
||||||
zip -j "$ARCHIVE_NAME" "${FILES[@]}"
|
|
||||||
|
|
||||||
- name: Upload archive as artifact
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: archive
|
|
||||||
path: pwsp-*.zip
|
|
||||||
retention-days: 7
|
|
||||||
|
|
||||||
- name: Install cargo-deb and create .deb
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
set -euo pipefail
|
|
||||||
cargo install --locked cargo-deb
|
|
||||||
export PATH="$HOME/.cargo/bin:$PATH"
|
|
||||||
|
|
||||||
cargo-deb
|
|
||||||
|
|
||||||
- name: Upload .deb(s) as artifacts
|
|
||||||
uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: deb-packages
|
|
||||||
path: target/debian/*.deb
|
|
||||||
retention-days: 7
|
|
||||||
|
|
||||||
flatpak-build:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
container:
|
|
||||||
image: ghcr.io/flathub-infra/flatpak-github-actions:freedesktop-25.08
|
|
||||||
options: --privileged
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Build Flatpak
|
|
||||||
uses: flatpak/flatpak-github-actions/flatpak-builder@v6
|
|
||||||
with:
|
|
||||||
bundle: ru.arabianq.pwsp.flatpak
|
|
||||||
manifest-path: packages/flatpak/ru.arabianq.pwsp.yaml
|
|
||||||
cache: true
|
|
||||||
branch: master
|
|
||||||
build-bundle: true
|
|
||||||
@@ -1,88 +0,0 @@
|
|||||||
name: Flatter
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches: [ main, master ]
|
|
||||||
release:
|
|
||||||
types: [ published ]
|
|
||||||
workflow_dispatch:
|
|
||||||
inputs:
|
|
||||||
tag_name:
|
|
||||||
description: "TAG (empty to build from current branch)"
|
|
||||||
required: false
|
|
||||||
type: string
|
|
||||||
build_branch:
|
|
||||||
description: "Flatpak branch to build (stable/nightly)"
|
|
||||||
required: true
|
|
||||||
type: choice
|
|
||||||
options:
|
|
||||||
- stable
|
|
||||||
- nightly
|
|
||||||
default: "stable"
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
flatter:
|
|
||||||
name: Flatter
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
permissions:
|
|
||||||
contents: read
|
|
||||||
container:
|
|
||||||
image: ghcr.io/andyholmes/flatter/freedesktop:25.08
|
|
||||||
options: --privileged
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Checkout
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
ref: ${{ inputs.tag_name || github.ref }}
|
|
||||||
|
|
||||||
- name: Setup GPG
|
|
||||||
id: gpg
|
|
||||||
uses: crazy-max/ghaction-import-gpg@v6
|
|
||||||
with:
|
|
||||||
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
|
|
||||||
passphrase: ${{ secrets.GPG_PASSPHRASE }}
|
|
||||||
|
|
||||||
- name: Set Default Branch
|
|
||||||
id: set_branch
|
|
||||||
run: |
|
|
||||||
if [ "${{ github.event_name }}" == "release" ]; then
|
|
||||||
echo "branch=stable" >> $GITHUB_OUTPUT
|
|
||||||
elif [ "${{ github.event_name }}" == "workflow_dispatch" ]; then
|
|
||||||
echo "branch=${{ inputs.build_branch }}" >> $GITHUB_OUTPUT
|
|
||||||
else
|
|
||||||
echo "branch=nightly" >> $GITHUB_OUTPUT
|
|
||||||
fi
|
|
||||||
|
|
||||||
- name: Modify Manifest
|
|
||||||
run: |
|
|
||||||
echo "branch: ${{ steps.set_branch.outputs.branch }}" >> packages/flatpak/ru.arabianq.pwsp.yaml
|
|
||||||
echo "default-branch: ${{ steps.set_branch.outputs.branch }}" >> packages/flatpak/ru.arabianq.pwsp.yaml
|
|
||||||
|
|
||||||
- name: Install SDK Extensions
|
|
||||||
run: flatpak install -y flathub org.freedesktop.Sdk.Extension.rust-stable//25.08
|
|
||||||
org.freedesktop.Sdk.Extension.llvm20//25.08
|
|
||||||
|
|
||||||
- name: Build Flatpak
|
|
||||||
uses: andyholmes/flatter@main
|
|
||||||
with:
|
|
||||||
files: packages/flatpak/ru.arabianq.pwsp.yaml
|
|
||||||
gpg-sign: ${{ steps.gpg.outputs.fingerprint }}
|
|
||||||
upload-bundles: false
|
|
||||||
upload-pages-artifact: true
|
|
||||||
|
|
||||||
deploy:
|
|
||||||
name: Deploy to GitHub Pages
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
needs: flatter
|
|
||||||
permissions:
|
|
||||||
pages: write
|
|
||||||
id-token: write
|
|
||||||
environment:
|
|
||||||
name: github-pages
|
|
||||||
url: ${{ steps.deployment.outputs.page_url }}
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: GitHub Pages
|
|
||||||
id: deployment
|
|
||||||
uses: actions/deploy-pages@v4
|
|
||||||
@@ -1,178 +0,0 @@
|
|||||||
name: Release
|
|
||||||
|
|
||||||
permissions:
|
|
||||||
contents: write
|
|
||||||
packages: write
|
|
||||||
|
|
||||||
on:
|
|
||||||
release:
|
|
||||||
types: [created]
|
|
||||||
workflow_dispatch:
|
|
||||||
inputs:
|
|
||||||
tag:
|
|
||||||
description: "Tag to attach assets to (e.g. v1.0.0)"
|
|
||||||
required: false
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
prepare:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
outputs:
|
|
||||||
tag: ${{ steps.tag.outputs.tag }}
|
|
||||||
steps:
|
|
||||||
- name: Determine tag to use
|
|
||||||
id: tag
|
|
||||||
run: |
|
|
||||||
set -euo pipefail
|
|
||||||
|
|
||||||
INPUT_TAG="${{ github.event.inputs.tag || '' }}"
|
|
||||||
if [ -n "$INPUT_TAG" ]; then
|
|
||||||
echo "Using input tag: $INPUT_TAG"
|
|
||||||
echo "tag=$INPUT_TAG" >> $GITHUB_OUTPUT
|
|
||||||
exit 0
|
|
||||||
fi
|
|
||||||
|
|
||||||
EVENT_TAG="${{ github.event.release.tag_name || '' }}"
|
|
||||||
if [ -n "$EVENT_TAG" ]; then
|
|
||||||
echo "Using event tag: $EVENT_TAG"
|
|
||||||
echo "tag=$EVENT_TAG" >> $GITHUB_OUTPUT
|
|
||||||
exit 0
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [[ "${GITHUB_REF:-}" =~ ^refs/tags/(.+)$ ]]; then
|
|
||||||
echo "Using GITHUB_REF tag: ${BASH_REMATCH[1]}"
|
|
||||||
echo "tag=${BASH_REMATCH[1]}" >> $GITHUB_OUTPUT
|
|
||||||
exit 0
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo "No tag in input/event/GITHUB_REF — querying latest release via API..."
|
|
||||||
LATEST_JSON=$(curl -sSf -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" -H "Accept: application/vnd.github+json" "https://api.github.com/repos/${{ github.repository }}/releases/latest" || true)
|
|
||||||
TAG_NAME=$(echo "$LATEST_JSON" | jq -r '.tag_name // empty')
|
|
||||||
if [ -n "$TAG_NAME" ]; then
|
|
||||||
echo "Found latest release tag: $TAG_NAME"
|
|
||||||
echo "tag=$TAG_NAME" >> $GITHUB_OUTPUT
|
|
||||||
exit 0
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo "No tag found"
|
|
||||||
echo "tag=" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- name: Fail if no tag determined
|
|
||||||
if: ${{ steps.tag.outputs.tag == '' }}
|
|
||||||
run: |
|
|
||||||
echo "ERROR: No tag determined. Provide a tag when running manually or ensure a release exists."
|
|
||||||
exit 1
|
|
||||||
|
|
||||||
linux-release:
|
|
||||||
needs: prepare
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: Install apt deps (jq/zip + dev-libs)
|
|
||||||
run: |
|
|
||||||
sudo apt-get update
|
|
||||||
sudo apt-get install -y \
|
|
||||||
zip jq \
|
|
||||||
libpipewire-0.3-dev \
|
|
||||||
libclang-dev \
|
|
||||||
libasound2-dev \
|
|
||||||
libdbus-1-dev \
|
|
||||||
pkg-config
|
|
||||||
|
|
||||||
- name: Checkout code at tag
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
ref: ${{ needs.prepare.outputs.tag }}
|
|
||||||
fetch-depth: 0
|
|
||||||
|
|
||||||
- name: Setup Rust toolchain
|
|
||||||
uses: actions-rs/toolchain@v1
|
|
||||||
with:
|
|
||||||
toolchain: 1.94.1
|
|
||||||
|
|
||||||
- name: Extract all binary names
|
|
||||||
id: cargo-meta
|
|
||||||
run: |
|
|
||||||
set -euo pipefail
|
|
||||||
BIN_NAMES=$(cargo metadata --no-deps --format-version 1 \
|
|
||||||
| jq -r '.packages[0].targets[] | select(.kind[] | contains("bin")) | .name')
|
|
||||||
echo "bin_names<<EOF" >> $GITHUB_OUTPUT
|
|
||||||
echo "$BIN_NAMES" >> $GITHUB_OUTPUT
|
|
||||||
echo "EOF" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- name: Build all release binaries
|
|
||||||
run: cargo build --release --locked
|
|
||||||
|
|
||||||
- name: Package all binaries into one archive
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
set -euo pipefail
|
|
||||||
TAG="${{ needs.prepare.outputs.tag }}"
|
|
||||||
ARCHIVE_NAME="pwsp-${TAG}-linux-x64.zip"
|
|
||||||
echo "Creating archive: $ARCHIVE_NAME"
|
|
||||||
|
|
||||||
FILES=()
|
|
||||||
while IFS= read -r BIN; do
|
|
||||||
[ -z "$BIN" ] && continue
|
|
||||||
FILES+=("target/release/$BIN")
|
|
||||||
done <<< "${{ steps.cargo-meta.outputs.bin_names }}"
|
|
||||||
|
|
||||||
if [ "${#FILES[@]}" -eq 0 ]; then
|
|
||||||
echo "Error: no binaries were discovered via cargo metadata." >&2
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
for f in "${FILES[@]}"; do
|
|
||||||
if [ ! -f "$f" ]; then
|
|
||||||
echo "Error: expected binary not found: $f" >&2
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
echo "Will add: $f"
|
|
||||||
done
|
|
||||||
|
|
||||||
zip -j "$ARCHIVE_NAME" "${FILES[@]}"
|
|
||||||
|
|
||||||
- name: Upload release archive
|
|
||||||
uses: softprops/action-gh-release@v2
|
|
||||||
with:
|
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
tag_name: ${{ needs.prepare.outputs.tag }}
|
|
||||||
files: |
|
|
||||||
pwsp-*.zip
|
|
||||||
|
|
||||||
- name: Install cargo-deb and create .deb
|
|
||||||
shell: bash
|
|
||||||
run: |
|
|
||||||
set -euo pipefail
|
|
||||||
cargo install --locked cargo-deb
|
|
||||||
export PATH="$HOME/.cargo/bin:$PATH"
|
|
||||||
|
|
||||||
cargo-deb
|
|
||||||
|
|
||||||
- name: Upload .deb(s) to release
|
|
||||||
uses: softprops/action-gh-release@v2
|
|
||||||
with:
|
|
||||||
token: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
tag_name: ${{ needs.prepare.outputs.tag }}
|
|
||||||
files: |
|
|
||||||
target/debian/*.deb
|
|
||||||
|
|
||||||
flatpak-release:
|
|
||||||
needs: prepare
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
container:
|
|
||||||
image: ghcr.io/flathub-infra/flatpak-github-actions:freedesktop-25.08
|
|
||||||
options: --privileged
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
with:
|
|
||||||
ref: ${{ needs.prepare.outputs.tag }}
|
|
||||||
|
|
||||||
- name: Build Flatpak
|
|
||||||
uses: flatpak/flatpak-github-actions/flatpak-builder@v6
|
|
||||||
with:
|
|
||||||
bundle: ru.arabianq.pwsp.flatpak
|
|
||||||
manifest-path: packages/flatpak/ru.arabianq.pwsp.yaml
|
|
||||||
cache: true
|
|
||||||
branch: master
|
|
||||||
build-bundle: true
|
|
||||||
@@ -1,4 +0,0 @@
|
|||||||
/target
|
|
||||||
.idea
|
|
||||||
packages/aur/bin/.git
|
|
||||||
packages/aur/standart/.git
|
|
||||||
Generated
-6184
File diff suppressed because it is too large
Load Diff
-121
@@ -1,121 +0,0 @@
|
|||||||
[package]
|
|
||||||
name = "pwsp"
|
|
||||||
version = "1.10.0"
|
|
||||||
edition = "2024"
|
|
||||||
authors = ["arabian"]
|
|
||||||
description = "PWSP lets you play audio files through your microphone. Has both CLI and GUI clients."
|
|
||||||
readme = "README.md"
|
|
||||||
homepage = "https://pwsp.arabianq.ru"
|
|
||||||
repository = "https://github.com/arabianq/pipewire-soundpad"
|
|
||||||
license = "MIT"
|
|
||||||
keywords = ["soundpad", "pipewire", "linux", "cli", "gui"]
|
|
||||||
|
|
||||||
|
|
||||||
[dependencies]
|
|
||||||
tokio = { version = "1.52.3", features = ["full"] }
|
|
||||||
async-trait = "0.1.89"
|
|
||||||
|
|
||||||
serde = { version = "1.0.228", features = ["derive"] }
|
|
||||||
serde_json = "1.0.149"
|
|
||||||
|
|
||||||
clap = { version = "4.6.1", default-features = false, features = [
|
|
||||||
"std",
|
|
||||||
"suggestions",
|
|
||||||
"help",
|
|
||||||
"usage",
|
|
||||||
"error-context",
|
|
||||||
"derive",
|
|
||||||
] }
|
|
||||||
|
|
||||||
dirs = "6.0.0"
|
|
||||||
itertools = "0.14.0"
|
|
||||||
evdev = { version = "0.13.2", features = ["tokio"] }
|
|
||||||
rfd = { version = "0.17.2", default-features = false, features = [
|
|
||||||
|
|
||||||
"xdg-portal",
|
|
||||||
|
|
||||||
] }
|
|
||||||
opener = { version = "0.8.4", features = ["reveal"] }
|
|
||||||
system-fonts = "0.1.1"
|
|
||||||
anyhow = "1.0.102"
|
|
||||||
rustix = { version = "1.1.4", features = ["process"] }
|
|
||||||
|
|
||||||
rust-i18n = "4.0.0"
|
|
||||||
sys-locale = "0.3.2"
|
|
||||||
|
|
||||||
rodio = { git = "https://github.com/arabianq/rodio.git", rev = "a634dd471e9d59196e19bf01323fb45f2f899821", default-features = false, features = [
|
|
||||||
"symphonia-all",
|
|
||||||
"symphonia-libopus",
|
|
||||||
"playback",
|
|
||||||
] }
|
|
||||||
pipewire = "0.10.0"
|
|
||||||
|
|
||||||
egui = { version = "0.34.2", default-features = false, features = [
|
|
||||||
"default_fonts",
|
|
||||||
"rayon",
|
|
||||||
] }
|
|
||||||
eframe = { version = "0.34.2", default-features = false, features = [
|
|
||||||
"default_fonts",
|
|
||||||
"glow",
|
|
||||||
"x11",
|
|
||||||
"wayland",
|
|
||||||
] }
|
|
||||||
egui_extras = "0.34.1"
|
|
||||||
egui_material_icons = "0.6.0"
|
|
||||||
egui_dnd = "0.15.0"
|
|
||||||
|
|
||||||
reqwest = "0.13.4"
|
|
||||||
percent-encoding = "2.3.2"
|
|
||||||
|
|
||||||
[[bin]]
|
|
||||||
name = "pwsp-daemon"
|
|
||||||
path = "src/bin/daemon.rs"
|
|
||||||
|
|
||||||
[[bin]]
|
|
||||||
name = "pwsp-cli"
|
|
||||||
path = "src/bin/cli.rs"
|
|
||||||
|
|
||||||
[[bin]]
|
|
||||||
name = "pwsp-gui"
|
|
||||||
path = "src/main.rs"
|
|
||||||
|
|
||||||
[profile.release]
|
|
||||||
strip = true
|
|
||||||
lto = true
|
|
||||||
codegen-units = 1
|
|
||||||
opt-level = "z"
|
|
||||||
panic = "abort"
|
|
||||||
|
|
||||||
[package.metadata.deb]
|
|
||||||
assets = [
|
|
||||||
[
|
|
||||||
"target/release/pwsp-daemon",
|
|
||||||
"usr/bin/",
|
|
||||||
"755",
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"target/release/pwsp-cli",
|
|
||||||
"usr/bin/",
|
|
||||||
"755",
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"target/release/pwsp-gui",
|
|
||||||
"usr/bin/",
|
|
||||||
"755",
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"assets/pwsp-gui.desktop",
|
|
||||||
"usr/share/applications/pwsp.desktop",
|
|
||||||
"644",
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"assets/icon.png",
|
|
||||||
"usr/share/icons/hicolor/256x256/apps/pwsp.png",
|
|
||||||
"644",
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"assets/pwsp-daemon.service",
|
|
||||||
"usr/lib/systemd/user/pwsp-daemon.service",
|
|
||||||
"644",
|
|
||||||
],
|
|
||||||
]
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
MIT License
|
|
||||||
|
|
||||||
Copyright (c) 2026 arabianq
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
|
||||||
in the Software without restriction, including without limitation the rights
|
|
||||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
copies of the Software, and to permit persons to whom the Software is
|
|
||||||
furnished to do so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in all
|
|
||||||
copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
||||||
SOFTWARE.
|
|
||||||
@@ -1,118 +0,0 @@
|
|||||||
<div align="center">
|
|
||||||
<h1>🎵 PipeWire Soundpad (PWSP)</h1>
|
|
||||||
<p><b>A simple, modern, and powerful soundboard for Linux, written in Rust.</b></p>
|
|
||||||
<img src="assets/screenshot.png" alt="PWSP Screenshot" width="700"/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
## 🌟 Overview
|
|
||||||
**PipeWire Soundpad (PWSP)** is a graphical soundboard application that routes audio directly to your virtual microphone using **PipeWire**. It provides an intuitive interface for managing your audio collection, making it an ideal tool for gamers, streamers, and anyone looking to inject sound effects into voice chats on platforms like Discord, Zoom, or TeamSpeak.
|
|
||||||
|
|
||||||
## ✨ Key Features
|
|
||||||
* **🎙️ Virtual Microphone Output:** Seamlessly mixes your microphone input with sound effects by automatically managing PipeWire virtual devices.
|
|
||||||
* **🎵 Multi-Format Support:** Plays popular audio formats including `mp3`, `wav`, `ogg`, `flac`, `mp4`, and `aac`.
|
|
||||||
* **⚡ Global Hotkeys:** Trigger sounds instantly from anywhere, even when the app is running in the background.
|
|
||||||
* **📂 Smart Collection Management:** Drag-and-drop folders, quick search, and collapsible tracks to keep your library organized.
|
|
||||||
* **🎛️ Advanced Playback Controls:** Individual volume sliders, play/pause, position scrubbing, and concurrent multi-track playback.
|
|
||||||
* **🔌 Plug & Play:** Automatically detects when an input device is connected or disconnected and handles linking/unlinking on the fly.
|
|
||||||
* **🖥️ Modern GUI:** Clean, responsive, and lightweight interface powered by [egui](https://egui.rs/).
|
|
||||||
|
|
||||||
## ⚙️ Architecture
|
|
||||||
PWSP is built with a client-server model to ensure stability and separation of concerns:
|
|
||||||
* **`pwsp-daemon`**: The background engine. It runs silently, managing PipeWire virtual devices, audio routing, and playback.
|
|
||||||
* **`pwsp-gui`**: The graphical interface. Communicates with the daemon via a Unix socket to control playback and settings.
|
|
||||||
* **`pwsp-cli`**: The command-line tool. Perfect for scripting, hotkey binding, or quick terminal-based control.
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 🚀 Installation
|
|
||||||
|
|
||||||
### 📦 Flatpak (Recommended)
|
|
||||||
Install PWSP via Flatpak from our custom repository:
|
|
||||||
```bash
|
|
||||||
flatpak remote-add --user --if-not-exists pwsp-repo https://arabianq.github.io/pipewire-soundpad/index.flatpakrepo
|
|
||||||
|
|
||||||
# Install stable version
|
|
||||||
flatpak install --user arabianq-repo ru.arabianq.pwsp//stable
|
|
||||||
|
|
||||||
# Or install the nightly version (latest commit)
|
|
||||||
flatpak install --user arabianq-repo ru.arabianq.pwsp//nightly
|
|
||||||
```
|
|
||||||
|
|
||||||
### 🐧 Linux Packages
|
|
||||||
**Fedora (and derivatives):**
|
|
||||||
```bash
|
|
||||||
sudo dnf copr enable arabianq/pwsp
|
|
||||||
sudo dnf install pwsp
|
|
||||||
```
|
|
||||||
|
|
||||||
**Arch Linux (AUR):**
|
|
||||||
```bash
|
|
||||||
paru -S pwsp-bin # or 'pwsp' to build from source
|
|
||||||
```
|
|
||||||
|
|
||||||
**Debian / Ubuntu:**
|
|
||||||
Download pre-built `.deb` packages or standalone binaries from the [Releases page](https://github.com/arabianq/pipewire-soundpad/releases).
|
|
||||||
|
|
||||||
### 🦀 Cargo / Source Build
|
|
||||||
```bash
|
|
||||||
cargo install pwsp
|
|
||||||
|
|
||||||
# OR clone and build manually:
|
|
||||||
git clone https://github.com/arabianq/pipewire-soundpad.git
|
|
||||||
cd pipewire-soundpad
|
|
||||||
cargo build --release
|
|
||||||
```
|
|
||||||
*(Note: Requires Rust toolchain and PipeWire running on your system).*
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 🎮 Usage
|
|
||||||
|
|
||||||
### 1. Start the Daemon
|
|
||||||
Before using the GUI or CLI, the daemon must be running in the background.
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# Recommended: Start and enable via systemd (starts on login)
|
|
||||||
systemctl --user enable --now pwsp-daemon
|
|
||||||
|
|
||||||
# Manual start (if not using systemd):
|
|
||||||
pwsp-daemon &
|
|
||||||
```
|
|
||||||
|
|
||||||
### 2. Using the GUI
|
|
||||||
1. **Add Sounds:** Click the **"+"** button to add a directory containing your audio files.
|
|
||||||
2. **Select Mic:** Choose your physical microphone from the dropdown. PWSP will instantly create a virtual microphone combining your voice and the soundboard.
|
|
||||||
3. **Play:** Click any sound to play it, adjust its volume, or assign a hotkey for quick access.
|
|
||||||
|
|
||||||
### 3. Using the CLI
|
|
||||||
Control the daemon directly from your terminal:
|
|
||||||
```bash
|
|
||||||
pwsp-cli action play /path/to/sound.mp3
|
|
||||||
pwsp-cli get volume
|
|
||||||
pwsp-cli set position 20
|
|
||||||
pwsp-cli --help # View all commands
|
|
||||||
```
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## ⌨️ Shortcuts & Controls
|
|
||||||
|
|
||||||
| Action | Keyboard | Mouse |
|
|
||||||
| :----------------------------------- | :--------------------- | :------------------- |
|
|
||||||
| **Play Track** (Stops others) | | `Left Click` |
|
|
||||||
| **Add Track** (Plays simultaneously) | | `Ctrl + Left Click` |
|
|
||||||
| **Replace Last Track** | | `Shift + Left Click` |
|
|
||||||
| **Pause / Resume** | `Space` | |
|
|
||||||
| **Stop All Tracks** | `Backspace` | |
|
|
||||||
| **Open / Close Settings** | `I` | |
|
|
||||||
| **Search** | `/` | |
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## 🤝 Contributing
|
|
||||||
Contributions, issues, and feature requests are welcome! Feel free to check out the [issues page](https://github.com/arabianq/pipewire-soundpad/issues).
|
|
||||||
|
|
||||||
[](https://deepwiki.com/arabianq/pipewire-soundpad)
|
|
||||||
|
|
||||||
## 📜 License
|
|
||||||
This project is licensed under the [MIT License](LICENSE).
|
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
Origin: arabianq
|
||||||
|
Label: PipeWire Soundpad
|
||||||
|
Codename: stable
|
||||||
|
Architectures: amd64 arm64
|
||||||
|
Components: main
|
||||||
|
Description: APT Repository for PWSP
|
||||||
|
SignWith: AAE3C56B1E2D3677108CF28083C9B0DB2C8F9D16
|
||||||
|
|
||||||
|
Origin: arabianq
|
||||||
|
Label: PipeWire Soundpad
|
||||||
|
Codename: nightly
|
||||||
|
Architectures: amd64 arm64
|
||||||
|
Components: main
|
||||||
|
Description: Nightly APT Repository for PWSP
|
||||||
|
SignWith: AAE3C56B1E2D3677108CF28083C9B0DB2C8F9D16
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,4 @@
|
|||||||
|
5.3.1
|
||||||
|
3.3.0
|
||||||
|
bdb5.3.28
|
||||||
|
bdb5.3.0
|
||||||
@@ -0,0 +1,38 @@
|
|||||||
|
-----BEGIN PGP SIGNED MESSAGE-----
|
||||||
|
Hash: SHA512
|
||||||
|
|
||||||
|
Origin: arabianq
|
||||||
|
Label: PipeWire Soundpad
|
||||||
|
Codename: nightly
|
||||||
|
Date: Wed, 05 Aug 2026 12:01:58 UTC
|
||||||
|
Architectures: amd64 arm64
|
||||||
|
Components: main
|
||||||
|
Description: Nightly APT Repository for PWSP
|
||||||
|
MD5Sum:
|
||||||
|
00bb78cce6513b17b0668d921c78a7a3 650 main/binary-amd64/Packages
|
||||||
|
0a012b8e65570db80685dc8b99422e88 454 main/binary-amd64/Packages.gz
|
||||||
|
facbb80485897bc6e0d67e37e5dd38e8 123 main/binary-amd64/Release
|
||||||
|
7f399404c5b1b6f09574b1f2eaaddd62 677 main/binary-arm64/Packages
|
||||||
|
651fd15c2cc197292455e1a47d141473 460 main/binary-arm64/Packages.gz
|
||||||
|
7418f9ee7493009aeaa4417f5d11ee62 123 main/binary-arm64/Release
|
||||||
|
SHA1:
|
||||||
|
f9b2cd1e4b873121ed699592496013a14839c92a 650 main/binary-amd64/Packages
|
||||||
|
0b333cee0019b1675e92e3cf653815a132842b53 454 main/binary-amd64/Packages.gz
|
||||||
|
66d8024fbaf66bb3aa03e04c8784ffc2d45d5e92 123 main/binary-amd64/Release
|
||||||
|
9a624a56b1a7d12b130da000b12ed1535fcc9593 677 main/binary-arm64/Packages
|
||||||
|
e92a86bdd35105b4edddf99d9d9aa08bcd9e6b1f 460 main/binary-arm64/Packages.gz
|
||||||
|
f7984ac62248818b3d8a2c59250042d426414d8c 123 main/binary-arm64/Release
|
||||||
|
SHA256:
|
||||||
|
83b2ad28dc421f14ace503fd5ae4f6dec2a990279b8633e0dfd9cb491391c4cb 650 main/binary-amd64/Packages
|
||||||
|
6cbd62121f311615a84da9c51b052bb047c53f5eefd6e9effc177b54db3a6af9 454 main/binary-amd64/Packages.gz
|
||||||
|
b5a22f248703739051a84b584c2b0ea20a9b69b28e823c5a8b0aca5f33f90bba 123 main/binary-amd64/Release
|
||||||
|
ba1b90d2cc8ad744c31e4531c00d3a7b29035e5201b946d8224a4a8b62a42a41 677 main/binary-arm64/Packages
|
||||||
|
caeddeebe38432ef0e9357455109a948a50ca8b422a842eb30c9ce841dc6b61d 460 main/binary-arm64/Packages.gz
|
||||||
|
a5e6d2298cf4bded7fd380a4bb06d97be39e9ea1a0b42acd5190a44aad619c92 123 main/binary-arm64/Release
|
||||||
|
-----BEGIN PGP SIGNATURE-----
|
||||||
|
|
||||||
|
iHUEARYKAB0WIQSq48VrHi02dxCM8oCDybDbLI+dFgUCanMmNgAKCRCDybDbLI+d
|
||||||
|
FjLMAQC3+xd58snwav0p6D3LzehXPpo6IMbqS0CJcbyqTAkbCwD/Uhe+I7gYHVFm
|
||||||
|
riijYTi1/ya5WNT3sQVTTt+y3Z2a4wc=
|
||||||
|
=m74C
|
||||||
|
-----END PGP SIGNATURE-----
|
||||||
@@ -0,0 +1,28 @@
|
|||||||
|
Origin: arabianq
|
||||||
|
Label: PipeWire Soundpad
|
||||||
|
Codename: nightly
|
||||||
|
Date: Wed, 05 Aug 2026 12:01:58 UTC
|
||||||
|
Architectures: amd64 arm64
|
||||||
|
Components: main
|
||||||
|
Description: Nightly APT Repository for PWSP
|
||||||
|
MD5Sum:
|
||||||
|
00bb78cce6513b17b0668d921c78a7a3 650 main/binary-amd64/Packages
|
||||||
|
0a012b8e65570db80685dc8b99422e88 454 main/binary-amd64/Packages.gz
|
||||||
|
facbb80485897bc6e0d67e37e5dd38e8 123 main/binary-amd64/Release
|
||||||
|
7f399404c5b1b6f09574b1f2eaaddd62 677 main/binary-arm64/Packages
|
||||||
|
651fd15c2cc197292455e1a47d141473 460 main/binary-arm64/Packages.gz
|
||||||
|
7418f9ee7493009aeaa4417f5d11ee62 123 main/binary-arm64/Release
|
||||||
|
SHA1:
|
||||||
|
f9b2cd1e4b873121ed699592496013a14839c92a 650 main/binary-amd64/Packages
|
||||||
|
0b333cee0019b1675e92e3cf653815a132842b53 454 main/binary-amd64/Packages.gz
|
||||||
|
66d8024fbaf66bb3aa03e04c8784ffc2d45d5e92 123 main/binary-amd64/Release
|
||||||
|
9a624a56b1a7d12b130da000b12ed1535fcc9593 677 main/binary-arm64/Packages
|
||||||
|
e92a86bdd35105b4edddf99d9d9aa08bcd9e6b1f 460 main/binary-arm64/Packages.gz
|
||||||
|
f7984ac62248818b3d8a2c59250042d426414d8c 123 main/binary-arm64/Release
|
||||||
|
SHA256:
|
||||||
|
83b2ad28dc421f14ace503fd5ae4f6dec2a990279b8633e0dfd9cb491391c4cb 650 main/binary-amd64/Packages
|
||||||
|
6cbd62121f311615a84da9c51b052bb047c53f5eefd6e9effc177b54db3a6af9 454 main/binary-amd64/Packages.gz
|
||||||
|
b5a22f248703739051a84b584c2b0ea20a9b69b28e823c5a8b0aca5f33f90bba 123 main/binary-amd64/Release
|
||||||
|
ba1b90d2cc8ad744c31e4531c00d3a7b29035e5201b946d8224a4a8b62a42a41 677 main/binary-arm64/Packages
|
||||||
|
caeddeebe38432ef0e9357455109a948a50ca8b422a842eb30c9ce841dc6b61d 460 main/binary-arm64/Packages.gz
|
||||||
|
a5e6d2298cf4bded7fd380a4bb06d97be39e9ea1a0b42acd5190a44aad619c92 123 main/binary-arm64/Release
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
-----BEGIN PGP SIGNATURE-----
|
||||||
|
|
||||||
|
iHUEABYKAB0WIQSq48VrHi02dxCM8oCDybDbLI+dFgUCanMmNgAKCRCDybDbLI+d
|
||||||
|
FrNfAP0YQ6vJtMGnYco93HXFcc90EuwrWDI4xt39L4p8vJh4FwD+IAyCHWl8ss/D
|
||||||
|
dcEQqs5gdSsY57UiNDOL4D9f77b3Rg0=
|
||||||
|
=+Nd7
|
||||||
|
-----END PGP SIGNATURE-----
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
Package: pwsp
|
||||||
|
Version: 1.16.0+git20260805.b939709
|
||||||
|
Architecture: amd64
|
||||||
|
Homepage: https://pwsp.arabianq.ru
|
||||||
|
Maintainer: arabian
|
||||||
|
Installed-Size: 40760
|
||||||
|
Depends: libasound2t64 (>= 1.1.0), libc6 (>= 2.34), libc6 (>= 2.39), libpipewire-0.3-0t64 (>= 0.3.1), libssl3t64 (>= 3.0.0)
|
||||||
|
Priority: optional
|
||||||
|
Section: sound
|
||||||
|
Filename: pool/main/p/pwsp/pwsp_1.16.0+git20260805.b939709_amd64.deb
|
||||||
|
Size: 8882168
|
||||||
|
SHA256: 033385ac167a6f025a7daa435bd9aac12a369afd76f431f2bf3f8f680638784f
|
||||||
|
SHA1: 074d0b853666621745b804b3f17c0220bfd252b9
|
||||||
|
MD5sum: 3e7a404f0b2f3246d270119560fca999
|
||||||
|
Description: PWSP lets you play audio files through your microphone. Has both CLI and GUI
|
||||||
|
clients.
|
||||||
|
|
||||||
Binary file not shown.
@@ -0,0 +1,5 @@
|
|||||||
|
Component: main
|
||||||
|
Origin: arabianq
|
||||||
|
Label: PipeWire Soundpad
|
||||||
|
Architecture: amd64
|
||||||
|
Description: Nightly APT Repository for PWSP
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
Package: pwsp
|
||||||
|
Version: 1.16.0+git20260805.b939709
|
||||||
|
Architecture: arm64
|
||||||
|
Homepage: https://pwsp.arabianq.ru
|
||||||
|
Maintainer: arabian
|
||||||
|
Installed-Size: 38023
|
||||||
|
Depends: libasound2t64 (>= 1.0.16), libasound2t64 (>= 1.1.0), libc6 (>= 2.34), libc6 (>= 2.39), libpipewire-0.3-0t64 (>= 0.3.1), libssl3t64 (>= 3.0.0)
|
||||||
|
Priority: optional
|
||||||
|
Section: sound
|
||||||
|
Filename: pool/main/p/pwsp/pwsp_1.16.0+git20260805.b939709_arm64.deb
|
||||||
|
Size: 7850212
|
||||||
|
SHA256: ff0c5cbf493a56ca4ec42c84cedf37caf02776c47de5967f65d0628fe7bf78b8
|
||||||
|
SHA1: a68f02a0a8a33df4ddcbb9f136df4fb3ba1379ba
|
||||||
|
MD5sum: d80a1b08d5ef5204ff3323c1f785012a
|
||||||
|
Description: PWSP lets you play audio files through your microphone. Has both CLI and GUI
|
||||||
|
clients.
|
||||||
|
|
||||||
Binary file not shown.
@@ -0,0 +1,5 @@
|
|||||||
|
Component: main
|
||||||
|
Origin: arabianq
|
||||||
|
Label: PipeWire Soundpad
|
||||||
|
Architecture: arm64
|
||||||
|
Description: Nightly APT Repository for PWSP
|
||||||
@@ -0,0 +1,38 @@
|
|||||||
|
-----BEGIN PGP SIGNED MESSAGE-----
|
||||||
|
Hash: SHA512
|
||||||
|
|
||||||
|
Origin: arabianq
|
||||||
|
Label: PipeWire Soundpad
|
||||||
|
Codename: stable
|
||||||
|
Date: Thu, 30 Jul 2026 18:06:43 UTC
|
||||||
|
Architectures: amd64 arm64
|
||||||
|
Components: main
|
||||||
|
Description: APT Repository for PWSP
|
||||||
|
MD5Sum:
|
||||||
|
2de93a1ccffff8dc07576ff2cbac89ad 614 main/binary-amd64/Packages
|
||||||
|
ad57c1a6590009574fc43d944070f316 438 main/binary-amd64/Packages.gz
|
||||||
|
f82d685802fbb32fec3c9ba8e11e55b9 115 main/binary-amd64/Release
|
||||||
|
85ac68fa6cdfbb5d70a1d76eccefbed3 614 main/binary-arm64/Packages
|
||||||
|
ae62b429581d52a4abb38bfd056a19c9 438 main/binary-arm64/Packages.gz
|
||||||
|
113dd4f621500874592b2a2f1eeb45ae 115 main/binary-arm64/Release
|
||||||
|
SHA1:
|
||||||
|
1272a588f847c8fb213639237c9c2bfd8e8be217 614 main/binary-amd64/Packages
|
||||||
|
31b42636c1b7737368678146bee7ebe03ea20cbf 438 main/binary-amd64/Packages.gz
|
||||||
|
1ff55a261c49c41f38e6da56f1f5d7136d38b08f 115 main/binary-amd64/Release
|
||||||
|
817b9c3496f7628bbf89381f2fe6dcf693a28f84 614 main/binary-arm64/Packages
|
||||||
|
6840de3ca2106d34ad50d3f24a7d9d281a08066f 438 main/binary-arm64/Packages.gz
|
||||||
|
be63fa980d70857efdc424c837cd54ab986a40cd 115 main/binary-arm64/Release
|
||||||
|
SHA256:
|
||||||
|
ae4a63df50dacda55c25d91e99e0f3a2b3fede6e8d2e32dbeaf51d82179d0896 614 main/binary-amd64/Packages
|
||||||
|
27fd302b845e7d405288df4482d8ded0e9f4229166d6a052111e571d480e6de3 438 main/binary-amd64/Packages.gz
|
||||||
|
c670ad086ec5b85d17211cb15e8e4ac1fb49a6398d0c9672992c26a009229d8c 115 main/binary-amd64/Release
|
||||||
|
e9dce2909d8500057848fcfb41b08f0cd750405cc98459791e3c45ad3b588a68 614 main/binary-arm64/Packages
|
||||||
|
9b9f0f9f8da40393ecaddebfc5786e75931fcd7a1905a017b6227dc745a35f8d 438 main/binary-arm64/Packages.gz
|
||||||
|
4a90ce2395fbe57635b23de83540564c0917b2f419cd69ab2630fc1520bb5c11 115 main/binary-arm64/Release
|
||||||
|
-----BEGIN PGP SIGNATURE-----
|
||||||
|
|
||||||
|
iHUEARYKAB0WIQSq48VrHi02dxCM8oCDybDbLI+dFgUCamuSswAKCRCDybDbLI+d
|
||||||
|
Fgx7AQCkFTgmnfn5nTw1Ditnf2dwcMeJKi3/z6RsyFvz9sM3AQEA1x/iyQM327qd
|
||||||
|
q6akZ9SVPx/sJcZ4JSZ39fyIJFXLPwM=
|
||||||
|
=s+sZ
|
||||||
|
-----END PGP SIGNATURE-----
|
||||||
@@ -0,0 +1,28 @@
|
|||||||
|
Origin: arabianq
|
||||||
|
Label: PipeWire Soundpad
|
||||||
|
Codename: stable
|
||||||
|
Date: Thu, 30 Jul 2026 18:06:43 UTC
|
||||||
|
Architectures: amd64 arm64
|
||||||
|
Components: main
|
||||||
|
Description: APT Repository for PWSP
|
||||||
|
MD5Sum:
|
||||||
|
2de93a1ccffff8dc07576ff2cbac89ad 614 main/binary-amd64/Packages
|
||||||
|
ad57c1a6590009574fc43d944070f316 438 main/binary-amd64/Packages.gz
|
||||||
|
f82d685802fbb32fec3c9ba8e11e55b9 115 main/binary-amd64/Release
|
||||||
|
85ac68fa6cdfbb5d70a1d76eccefbed3 614 main/binary-arm64/Packages
|
||||||
|
ae62b429581d52a4abb38bfd056a19c9 438 main/binary-arm64/Packages.gz
|
||||||
|
113dd4f621500874592b2a2f1eeb45ae 115 main/binary-arm64/Release
|
||||||
|
SHA1:
|
||||||
|
1272a588f847c8fb213639237c9c2bfd8e8be217 614 main/binary-amd64/Packages
|
||||||
|
31b42636c1b7737368678146bee7ebe03ea20cbf 438 main/binary-amd64/Packages.gz
|
||||||
|
1ff55a261c49c41f38e6da56f1f5d7136d38b08f 115 main/binary-amd64/Release
|
||||||
|
817b9c3496f7628bbf89381f2fe6dcf693a28f84 614 main/binary-arm64/Packages
|
||||||
|
6840de3ca2106d34ad50d3f24a7d9d281a08066f 438 main/binary-arm64/Packages.gz
|
||||||
|
be63fa980d70857efdc424c837cd54ab986a40cd 115 main/binary-arm64/Release
|
||||||
|
SHA256:
|
||||||
|
ae4a63df50dacda55c25d91e99e0f3a2b3fede6e8d2e32dbeaf51d82179d0896 614 main/binary-amd64/Packages
|
||||||
|
27fd302b845e7d405288df4482d8ded0e9f4229166d6a052111e571d480e6de3 438 main/binary-amd64/Packages.gz
|
||||||
|
c670ad086ec5b85d17211cb15e8e4ac1fb49a6398d0c9672992c26a009229d8c 115 main/binary-amd64/Release
|
||||||
|
e9dce2909d8500057848fcfb41b08f0cd750405cc98459791e3c45ad3b588a68 614 main/binary-arm64/Packages
|
||||||
|
9b9f0f9f8da40393ecaddebfc5786e75931fcd7a1905a017b6227dc745a35f8d 438 main/binary-arm64/Packages.gz
|
||||||
|
4a90ce2395fbe57635b23de83540564c0917b2f419cd69ab2630fc1520bb5c11 115 main/binary-arm64/Release
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
-----BEGIN PGP SIGNATURE-----
|
||||||
|
|
||||||
|
iHUEABYKAB0WIQSq48VrHi02dxCM8oCDybDbLI+dFgUCamuSswAKCRCDybDbLI+d
|
||||||
|
FvWKAP9RzLfWCg+m1vhGD+Fo7wv2ytR6munB2+NbSC/rxj/aagD/T9iWDpJug+MY
|
||||||
|
X9dM2MhahNW182JXDx5ZpbHncYpfCAk=
|
||||||
|
=vaqO
|
||||||
|
-----END PGP SIGNATURE-----
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
Package: pwsp
|
||||||
|
Version: 1.16.0-1
|
||||||
|
Architecture: amd64
|
||||||
|
Homepage: https://pwsp.arabianq.ru
|
||||||
|
Maintainer: arabian
|
||||||
|
Installed-Size: 14163
|
||||||
|
Depends: libasound2t64 (>= 1.1.0), libc6 (>= 2.34), libc6 (>= 2.39), libpipewire-0.3-0t64 (>= 0.3.1), libssl3t64 (>= 3.0.0)
|
||||||
|
Priority: optional
|
||||||
|
Section: sound
|
||||||
|
Filename: pool/main/p/pwsp/pwsp_1.16.0-1_amd64.deb
|
||||||
|
Size: 4516628
|
||||||
|
SHA256: 52517b411b8a639c7a7f89d73434ec8a1939ef29e23f277d21d57d2cff0de66f
|
||||||
|
SHA1: 2332a49d8765625f647a540ef5b3dad1376e29b8
|
||||||
|
MD5sum: 70227d14757a9f5bc7a4540aef4845ff
|
||||||
|
Description: PWSP lets you play audio files through your microphone. Has both CLI and GUI
|
||||||
|
clients.
|
||||||
|
|
||||||
Binary file not shown.
@@ -0,0 +1,5 @@
|
|||||||
|
Component: main
|
||||||
|
Origin: arabianq
|
||||||
|
Label: PipeWire Soundpad
|
||||||
|
Architecture: amd64
|
||||||
|
Description: APT Repository for PWSP
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
Package: pwsp
|
||||||
|
Version: 1.16.0-1
|
||||||
|
Architecture: arm64
|
||||||
|
Homepage: https://pwsp.arabianq.ru
|
||||||
|
Maintainer: arabian
|
||||||
|
Installed-Size: 11582
|
||||||
|
Depends: libasound2t64 (>= 1.1.0), libc6 (>= 2.34), libc6 (>= 2.39), libpipewire-0.3-0t64 (>= 0.3.1), libssl3t64 (>= 3.0.0)
|
||||||
|
Priority: optional
|
||||||
|
Section: sound
|
||||||
|
Filename: pool/main/p/pwsp/pwsp_1.16.0-1_arm64.deb
|
||||||
|
Size: 3999156
|
||||||
|
SHA256: 700bd6a16a19959c141686dd3e98216ebdcaba1ae4b9658769868c4bdf6ac4ee
|
||||||
|
SHA1: f3d0d7df317784dc3b458c191337cad1ac0c274d
|
||||||
|
MD5sum: 380255fabc814fb5c326986f617f93d0
|
||||||
|
Description: PWSP lets you play audio files through your microphone. Has both CLI and GUI
|
||||||
|
clients.
|
||||||
|
|
||||||
Binary file not shown.
@@ -0,0 +1,5 @@
|
|||||||
|
Component: main
|
||||||
|
Origin: arabianq
|
||||||
|
Label: PipeWire Soundpad
|
||||||
|
Architecture: arm64
|
||||||
|
Description: APT Repository for PWSP
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,13 @@
|
|||||||
|
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||||||
|
|
||||||
|
mDMEaezCthYJKwYBBAHaRw8BAQdAyDiO0akghMksZ6O02KlelezoaePzXhH8yNWS
|
||||||
|
eAWTuRi0DGEudGV2Z0B5YS5ydYiZBBMWCgBBFiEEquPFax4tNncQjPKAg8mw2yyP
|
||||||
|
nRYFAmnswrYCGwMFCQWjmoAFCwkIBwICIgIGFQoJCAsCBBYCAwECHgcCF4AACgkQ
|
||||||
|
g8mw2yyPnRbXawEAo0EPrAfePpIVj+CIph+Muj1ZU9Ui5+CD32J9XtSJYRcBANTz
|
||||||
|
txOH1oG5n3eFZ/HCnU4Z+yiqEhGI2b//fC8jxx0HuDgEaezCthIKKwYBBAGXVQEF
|
||||||
|
AQEHQEt/m+vl2KMpu+TZWaLDa6jnR3ctu3xbYpjfqDtOl+YnAwEIB4h4BBgWCgAg
|
||||||
|
FiEEquPFax4tNncQjPKAg8mw2yyPnRYFAmnswrYCGwwACgkQg8mw2yyPnRbEHAD+
|
||||||
|
PiMF1s5ZYNlfp3RcOTasrasWDjmCXvFYbeM3vWCAO94BAIlfzEZKodeZ4jfTuf+u
|
||||||
|
QoXpv5yiGFpf7xFOxcvXE38B
|
||||||
|
=F4OX
|
||||||
|
-----END PGP PUBLIC KEY BLOCK-----
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user