Skip to content

Commit

Permalink
new packages for xfce4 and i3 initial commit to start creation for Ga…
Browse files Browse the repository at this point in the history
…lileo release
  • Loading branch information
killajoe committed Aug 28, 2023
1 parent 6bff34e commit 3c1adc6
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 0 deletions.
27 changes: 27 additions & 0 deletions eos-settings-i3wm/PKGBUILD_invalid
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Maintainer: joekamprad <joekamprad at endeavouros.com>

_pkgname=endeavouros-i3wm-setup
pkgname=endeavouros-skel-i3wm
pkgver=4.10
pkgrel=1
pkgdesc="pre user creation skel setup for i3-wm under EndeavourOS"
arch=('any')
groups=('EndeavourOS')
url="https://github.com/endeavouros-team/${_pkgname}"
license=('GPL')
makedepends=('git')
depends=('endeavouros-skel-default')
source=("https://github.com/endeavouros-team/endeavouros-i3wm-setup/archive/refs/tags/${pkgver}.tar.gz")
sha256sums=('689d38bcd905b2c1a8efa257e5790e18f90e6db2985f4c5131569c312701ab90')

package() {
PREFIX=/etc/skel
cd "$_pkgname-$pkgver"
mkdir -p "${pkgdir}${PREFIX}/.config/"
cp -R ".config/dunst" "${pkgdir}${PREFIX}/.config/dunst"
cp -R ".config/i3" "${pkgdir}${PREFIX}/.config/i3"
chmod -R +x "${pkgdir}${PREFIX}/.config/i3/scripts"
cp -R ".config/rofi" "${pkgdir}${PREFIX}/.config/rofi"
install -Dm644 ".config/example.picom.conf" "${pkgdir}${PREFIX}/.config/"
install -Dm755 ".profile" "${pkgdir}${PREFIX}/.profile"
}
25 changes: 25 additions & 0 deletions eos-settings-xfce4/PKGBUILD_invalid
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Maintainer: joekamprad <joekamprad at endeavouros.com>

_pkgname=endeavouros-xfce4-theming
pkgname=endeavouros-skel-xfce4
pkgver=3.7
pkgrel=1
pkgdesc="pre user creation skel setup for xfce4 under EndeavourOS"
arch=("any")
url="https://github.com/endeavouros-team/${_pkgname}"
license=("GPL")
makedepends=("git")
depends=("endeavouros-skel-default" "endeavouros-theming")
source=("https://github.com/endeavouros-team/endeavouros-xfce4-theming/archive/refs/tags/${pkgver}.tar.gz")
sha256sums=('025bf3a39eef41304bb5908176cd4e61efc6aa46ea087299787ff3ef3eb5004f')

package() {
PREFIX=/etc/skel
cd "$_pkgname-$pkgver"
mkdir -p "${pkgdir}${PREFIX}/.config/"
mkdir -p "${pkgdir}${PREFIX}/.config/xfce4/"
cp -R ".config/Thunar" "${pkgdir}${PREFIX}/.config/Thunar"
cp -R ".config/xfce4/panel" "${pkgdir}${PREFIX}/.config/xfce4/panel"
cp -R ".config/xfce4/xfconf" "${pkgdir}${PREFIX}/.config/xfce4/xfconf"
install -Dm755 ".face" "${pkgdir}${PREFIX}/.face"
}

0 comments on commit 3c1adc6

Please sign in to comment.