Files
euri-packages/packages/antergos-sway-config/PKGBUILD
T
c-ludenberg 61031fc3ff release(calamares-branding): v2.0 slideshow + DM selector rework
- bump calamares-branding-antergos-next to 2.0-1: major slideshow redesign
  (Manjaro space animation rework), DM packagechooser switched to netinstall-add
  with inline groups, default netinstall group gains network/audio/falkon so
  every install works regardless of DE, fix pkgdesc (offline installer buried)

- remove dead calamares-branding-antergos-next-minimal package (unused
  everywhere); drop from packages.yaml and README

- bump antergos-i3/sway/hyprland-config to 1.0-2: nerd fonts and icons back in
  depends so the rice actually renders, sources flattened for makepkg
2026-08-06 19:28:32 +02:00

46 lines
1.3 KiB
Bash

# Maintainer: Celestia Ludenberg <ash8820@proton.me>
pkgname=antergos-sway-config
pkgver=1.0
pkgrel=2
pkgdesc='Antergos NeXT Sway WM configuration — dark theme with waybar, wofi, mako'
arch=('any')
url="https://github.com/Antergos-NeXT/antergos-packages"
license=('GPL3')
depends=(
'sway'
'waybar'
'wofi'
'mako'
'swaybg'
'grim'
'slurp'
'ttf-jetbrains-mono-nerd'
'papirus-icon-theme'
)
optdepends=(
'foot: default terminal emulator'
'pavucontrol: audio settings GUI'
'brightnessctl: brightness control'
'swaylock: screen locker'
'playerctl: media player controls'
)
source=("sway-config" "99-autostart" "config.jsonc" "style.css" "wofi-config" "wofi-style.css" "mako-config")
sha256sums=('SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP')
package() {
local _skel="$pkgdir/etc/skel/.config"
install -dm755 "$_skel/sway/config.d"
install -dm755 "$_skel/waybar"
install -dm755 "$_skel/wofi"
install -dm755 "$_skel/mako"
cp -a "sway-config" "$_skel/sway/config"
cp -a "99-autostart" "$_skel/sway/config.d/99-autostart"
cp -a "config.jsonc" "$_skel/waybar/config.jsonc"
cp -a "style.css" "$_skel/waybar/style.css"
cp -a "wofi-config" "$_skel/wofi/config"
cp -a "wofi-style.css" "$_skel/wofi/style.css"
cp -a "mako-config" "$_skel/mako/config"
}