Skip to content

Commit

Permalink
Add two more splashscreens and update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Eeems committed Aug 22, 2023
1 parent 1f0d939 commit a5ebfe7
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/package.md
Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,7 @@ math | Apps to assist the user in performing mathematical tasks.
readers | Apps for reading and annotating documents (PDF, EPUB, …).
screensharing | Apps for streaming the display between the PC and tablet.
templates | Templates for xochitl notebooks.
splashscreens | Splashscreens for device startup, poweroff, suspend, etc.
utils | System tools and various apps.

If the package does not fit into one of the existing sections, you are free to create a new one and document it here.
Expand Down
50 changes: 50 additions & 0 deletions package/splashcreens-wavy-lines/package
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
#!/usr/bin/env bash
# Copyright (c) 2023 The Toltec Contributors
# SPDX-License-Identifier: MIT

pkgnames=(
splashscreen-starting-wavey-lines
splashscreen-suspended-wavey-lines
)
url=https://github.com/EnglishLFC/reMarkable
pkgver=0.0.0-1
timestamp=2021-03-19T18:46:40Z
section="splashscreens"
maintainer="Eeems <[email protected]>"
license=BSD-2-Clause
installdepends=(changescrn)

source=("https://github.com/EnglishLFC/reMarkable/archive/a06b10ea9f28c784e6941085a30944c0489450f4.zip")
sha256sums=(ec5f0321342bf6b48bb1431f4b1cf4416c37681879b3ec6c9375f889077a0b7f)

splashscreen-starting-wavey-lines() {
pkgdesc="Barnsley Fern battery empty splashscreen"
replaces=("splashscreen-starting")
conflicts=("splashscreen-starting")
package() {
install -D -m 755 -t "$pkgdir"/opt/share/remarkable/splashscreens \
"$srcdir"/splash/splash.png
}
configure() {
changescrn -c starting /opt/share/remarkable/splashscreens/starting.png
}
postremove() {
changescrn -r starting
}
}

splashscreen-suspended-wavey-lines() {
pkgdesc="Barnsley Fern power off splashscreen"
replaces=("splashscreen-suspended")
conflicts=("splashscreen-suspended")
package() {
install -D -m 755 -t "$pkgdir"/opt/share/remarkable/splashscreens \
"$srcdir"/splash/suspended.png
}
configure() {
changescrn -c suspended /opt/share/remarkable/splashscreens/suspended.png
}
postremove() {
changescrn -r suspended
}
}

0 comments on commit a5ebfe7

Please sign in to comment.