49 lines
1.3 KiB
Bash
49 lines
1.3 KiB
Bash
# 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://antergos-nas.taild4360b.ts.net/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"
|
|
}
|