2 weeks no ISO and im losing my mind — README finally accurate, WM configs so i3cels stop coping, dconf wallpaper actually points to a file that exists. someone sedate me

This commit is contained in:
2026-07-28 20:34:39 +02:00
parent 4b7fd8835b
commit 26071fd05d
28 changed files with 1541 additions and 34 deletions
@@ -0,0 +1,55 @@
# Maintainer: Celestia Ludenberg <ash8820@proton.me>
pkgname=antergos-hyprland-config
pkgver=1.0
pkgrel=1
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=(
"hypr/hyprland.lua"
"hypr/hyprpaper.conf"
"waybar/config.jsonc"
"waybar/style.css"
"rofi/config.rasi"
"rofi/theme.rasi"
"dunst/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 "hypr/hyprland.lua" "$_skel/hypr/"
cp -a "hypr/hyprpaper.conf" "$_skel/hypr/"
cp -a "waybar/config.jsonc" "$_skel/waybar/"
cp -a "waybar/style.css" "$_skel/waybar/"
cp -a "rofi/config.rasi" "$_skel/rofi/"
cp -a "rofi/theme.rasi" "$_skel/rofi/"
cp -a "dunst/dunstrc" "$_skel/dunst/"
}