rebrand!: Antergos NeXT -> Euri Linux

This commit is contained in:
2026-08-21 21:43:47 +02:00
parent 7256fd331a
commit 0cfc149d37
1452 changed files with 599 additions and 597 deletions
+48
View File
@@ -0,0 +1,48 @@
# Maintainer: Michał <ash8820@proton.me>
pkgname=euri-i3-config
pkgver=1.0
pkgrel=2
pkgdesc='Euri Linux i3 WM configuration — Dracula dark theme with polybar, rofi, picom'
arch=('any')
url="https://github.com/Euri-Linux/euri-packages"
license=('GPL3')
depends=(
'i3-wm'
'polybar'
'rofi'
'picom'
'dunst'
'feh'
'sxhkd'
'ttf-firacode-nerd'
'papirus-icon-theme'
)
optdepends=(
'kitty: default terminal emulator'
'flameshot: screenshot tool'
'brightnessctl: brightness control'
'pavucontrol: audio settings GUI'
)
source=("config" "config.ini" "launch.sh" "config.rasi" "theme.rasi" "picom.conf" "dunstrc" "sxhkdrc")
sha256sums=('SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP')
package() {
local _skel="$pkgdir/etc/skel/.config"
install -dm755 "$_skel/i3"
install -dm755 "$_skel/polybar"
install -dm755 "$_skel/rofi"
install -dm755 "$_skel/picom"
install -dm755 "$_skel/dunst"
install -dm755 "$_skel/sxhkd"
cp -a "config" "$_skel/i3/config"
cp -a "config.ini" "$_skel/polybar/config.ini"
install -m755 "launch.sh" "$_skel/polybar/launch.sh"
cp -a "config.rasi" "$_skel/rofi/config.rasi"
cp -a "theme.rasi" "$_skel/rofi/theme.rasi"
cp -a "picom.conf" "$_skel/picom/picom.conf"
cp -a "dunstrc" "$_skel/dunst/dunstrc"
cp -a "sxhkdrc" "$_skel/sxhkd/sxhkdrc"
}