Files
euri-packages/packages/antergos-hyprland-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

47 lines
1.3 KiB
Bash

# Maintainer: Celestia Ludenberg <ash8820@proton.me>
pkgname=antergos-hyprland-config
pkgver=1.0
pkgrel=2
pkgdesc='Antergos NeXT Hyprland configuration — dark theme with waybar, rofi, dunst'
arch=('any')
url="https://github.com/Antergos-NeXT/antergos-packages"
license=('GPL3')
depends=(
'hyprland'
'waybar'
'rofi'
'dunst'
'swww'
'kitty'
'ttf-jetbrains-mono-nerd'
'papirus-icon-theme'
)
optdepends=(
'hyprlock: screen locker'
'hypridle: idle management'
'hyprpaper: wallpaper daemon'
'grim: screenshot tool'
'slurp: region selection'
'pavucontrol: audio settings'
'brightnessctl: brightness control'
)
source=("hyprland.lua" "hyprpaper.conf" "config.jsonc" "style.css" "config.rasi" "theme.rasi" "dunstrc")
sha256sums=('SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP')
package() {
local _skel="$pkgdir/etc/skel/.config"
install -dm755 "$_skel/hypr"
install -dm755 "$_skel/waybar"
install -dm755 "$_skel/rofi"
install -dm755 "$_skel/dunst"
cp -a "hyprland.lua" "$_skel/hypr/hyprland.lua"
cp -a "hyprpaper.conf" "$_skel/hypr/hyprpaper.conf"
cp -a "config.jsonc" "$_skel/waybar/config.jsonc"
cp -a "style.css" "$_skel/waybar/style.css"
cp -a "config.rasi" "$_skel/rofi/config.rasi"
cp -a "theme.rasi" "$_skel/rofi/theme.rasi"
cp -a "dunstrc" "$_skel/dunst/dunstrc"
}