Files
euri-iso/airootfs/root/antergos-skel-liveuser/PKGBUILD
T
c-ludenberg f29905860e skel: purge KDE/Breeze leftovers, add proper GNOME light blue Antergos theme
- Removed KDE/Breeze gtkrc, gtkrc-2.0, .gtkrc-2.0, colors.css,
  window_decorations.css, SVG assets, antergos-log-tool.desktop
- Fixed .bashrc: dropped exo-open fallback (XFCE)
- Fixed firefox.desktop: removed dead antergos.com URL
- Fixed user-commands: calamares -> cnchi
- Fixed PKGBUILD maintainer email
- Fixed wallpaper gschema override path
- Added proper light blue (#1d90cd) GTK3/GTK4 user CSS
- Added Antergos-NeXT GNOME Shell theme with dark panel
- Wired shell theme via gsettings + dbus-launch in chroot
- Added out/ and work/ to .gitignore
2026-06-15 20:28:41 +02:00

29 lines
705 B
Bash
Executable File

# Maintainer: Antergos NeXT <https://github.com/Antergos-NeXT>
pkgname='antergos-skel-liveuser'
pkgver=1.0
pkgrel=2
pkgdesc='Liveuser specific skel setup for GNOME Antergos NeXT'
arch=('any')
url='https://github.com/antergos/antergos-iso-next'
license=('GPL3')
source=()
package() {
# Clone file structure
cp -r --no-preserve=ownership "${srcdir}/"* "${pkgdir}"
# Find all scripts
readarray -d '' scripts < <(find "${pkgdir}/etc/skel" -type f \( -iname "*.sh" -o -iname "*.bash" \) -print0)
scripts+=(
"${pkgdir}/etc/skel/.xinitrc"
)
# Make scripts executable
for script in "${scripts[@]}";
do
[[ -f ${script} ]] && chmod +x "${script}"
done
}