Skip to content

Commit 8f19ba2

Browse files
authored
feat: add plymouth theme catppuccin (catppuccin#25)
* feat: add plymouth theme catppuccin * Apply automatic changes * refactor: rename plymouth package base --------- Co-authored-by: ghostx31 <[email protected]>
1 parent 4935f5e commit 8f19ba2

File tree

2 files changed

+76
-0
lines changed

2 files changed

+76
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
pkgbase = plymouth-theme-catppuccin-git
2+
pkgdesc = Soothing pastel theme for Plymouth
3+
pkgver = r12.e13c348
4+
pkgrel = 1
5+
url = https://github.com/catppuccin/plymouth
6+
arch = any
7+
license = MIT
8+
depends = plymouth
9+
source = plymouth-theme-catppuccin-git::git+https://github.com/catppuccin/plymouth.git
10+
sha512sums = SKIP
11+
12+
pkgname = plymouth-theme-catppuccin-latte-git
13+
pkgdesc = Soothing pastel theme for Plymouth - Latte
14+
15+
pkgname = plymouth-theme-catppuccin-frappe-git
16+
pkgdesc = Soothing pastel theme for Plymouth - Frappe
17+
18+
pkgname = plymouth-theme-catppuccin-macchiato-git
19+
pkgdesc = Soothing pastel theme for Plymouth - Macchiato
20+
21+
pkgname = plymouth-theme-catppuccin-mocha-git
22+
pkgdesc = Soothing pastel theme for Plymouth - Mocha
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
# Maintainer: Florian Maunier <[email protected]>
2+
pkgbase=plymouth-theme-catppuccin-git
3+
pkgname=(
4+
plymouth-theme-catppuccin-latte-git
5+
plymouth-theme-catppuccin-frappe-git
6+
plymouth-theme-catppuccin-macchiato-git
7+
plymouth-theme-catppuccin-mocha-git
8+
)
9+
pkgver=r12.e13c348
10+
pkgrel=1
11+
pkgdesc="Soothing pastel theme for Plymouth"
12+
arch=('any')
13+
url="https://github.com/catppuccin/plymouth"
14+
license=('MIT')
15+
depends=('plymouth')
16+
source=("$pkgbase::git+https://github.com/catppuccin/plymouth.git")
17+
sha512sums=('SKIP')
18+
19+
pkgver() {
20+
cd "$pkgbase"
21+
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short=7 HEAD)"
22+
}
23+
24+
package_plymouth-theme-catppuccin-latte-git() {
25+
pkgdesc="Soothing pastel theme for Plymouth - Latte"
26+
27+
cd "$srcdir/$pkgbase/themes/catppuccin-latte"
28+
mkdir -p $pkgdir/usr/share/plymouth/themes/catppuccin-latte
29+
install -Dm644 * "${pkgdir}"/usr/share/plymouth/themes/catppuccin-latte
30+
}
31+
32+
package_plymouth-theme-catppuccin-frappe-git() {
33+
pkgdesc="Soothing pastel theme for Plymouth - Frappe"
34+
35+
cd "$srcdir/$pkgbase/themes/catppuccin-frappe"
36+
mkdir -p $pkgdir/usr/share/plymouth/themes/catppuccin-frappe
37+
install -Dm644 * "${pkgdir}"/usr/share/plymouth/themes/catppuccin-frappe
38+
}
39+
40+
package_plymouth-theme-catppuccin-macchiato-git() {
41+
pkgdesc="Soothing pastel theme for Plymouth - Macchiato"
42+
43+
cd "$srcdir/$pkgbase/themes/catppuccin-macchiato"
44+
mkdir -p $pkgdir/usr/share/plymouth/themes/catppuccin-macchiato
45+
install -Dm644 * "${pkgdir}"/usr/share/plymouth/themes/catppuccin-macchiato
46+
}
47+
48+
package_plymouth-theme-catppuccin-mocha-git() {
49+
pkgdesc="Soothing pastel theme for Plymouth - Mocha"
50+
51+
cd "$srcdir/$pkgbase/themes/catppuccin-mocha"
52+
mkdir -p $pkgdir/usr/share/plymouth/themes/catppuccin-mocha
53+
install -Dm644 * "${pkgdir}"/usr/share/plymouth/themes/catppuccin-mocha
54+
}

0 commit comments

Comments
 (0)