The validity check for the themes.zip file (themes-41fd29514b4f7f13062e57c229a62d163470d4519aefb8ac05a6b4153b8d807a.zip) fails.
Search Criteria
Package Details: oh-my-posh-bin 25.12.0-1
Package Actions
Git Clone URL: | https://aur.archlinux.org/oh-my-posh-bin.git (read-only, click to copy) |
---|---|
Package Base: | oh-my-posh-bin |
Description: | A prompt theme engine for any shell. |
Upstream URL: | https://github.com/JanDeDobbeleer/oh-my-posh |
Licenses: | MIT |
Conflicts: | oh-my-posh |
Provides: | oh-my-posh |
Submitter: | Kamack38 |
Maintainer: | Kamack38 |
Last Packager: | Kamack38 |
Votes: | 24 |
Popularity: | 2.17 |
First Submitted: | 2022-04-04 15:34 (UTC) |
Last Updated: | 2025-04-03 18:47 (UTC) |
Dependencies (4)
- curl (curl-gitAUR, curl-c-aresAUR) (make)
- grep (grep-gitAUR, busybox-coreutilsAUR, grep-compatAUR) (make)
- sed (busybox-coreutilsAUR, sed-gitAUR) (make)
- unzip (unzip-natspecAUR, unzip-zstdAUR) (make)
Required by (1)
- easy-zsh-config (requires oh-my-posh) (optional)
Sources (5)
- LICENSE-a5308c4e51268229a039ec4ec9a251a4cdb89d9380383e6e13aeba64a74f19ad
- posh-linux-amd64-07b19bfe0860de888abb11e63a30e57df89bcb5eee88294f10b42cd295247fe4
- posh-linux-arm-89a90a38361dea1a865704f45510c99cb9a48103fba7feeca1def70fe3da6e56
- posh-linux-arm64-8cfe98c4cfc779aa1999d351e383f8abb23363c79eff5b9fa5af0c1143e55aa4
- themes-3ee546215ebddd6edbb34d851c5da039179c1c8ebdfafe9f3a9f7c2f073eb0de.zip
Latest Comments
« First ‹ Previous 1 2
mikebm94 commented on 2022-07-11 04:37 (UTC)
wszqkzqk commented on 2022-06-21 05:53 (UTC)
But how to solve the problem of character garbled.
m3thodic commented on 2022-06-12 16:03 (UTC)
Actually here is a better diff for changing the file permissions on themes:
diff --git a/PKGBUILD b/PKGBUILD
index 4b44796..bc9e991 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -43,4 +43,5 @@ package() {
mkdir -p "${pkgdir}/usr/share/oh-my-posh/themes"
unzip "${srcdir}/themes-${sha256sums}.zip" -d "${pkgdir}/usr/share/oh-my-posh/themes"
+ find "${pkgdir}/usr/share/oh-my-posh/themes" -type f -exec chmod 644 "{}" \;
}
m3thodic commented on 2022-06-04 01:38 (UTC) (edited on 2022-06-04 01:38 (UTC) by m3thodic)
Hey @Kamack38
You need to chmod the bundled themes in the package() function:
diff --git a/PKGBUILD b/PKGBUILD
index 8364251..9ee79e6 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -43,4 +43,5 @@ package() {
mkdir -p "${pkgdir}/usr/share/oh-my-posh/themes"
unzip "${srcdir}/themes-${sha256sums}.zip" -d "${pkgdir}/usr/share/oh-my-posh/themes"
+ chmod 644 "${pkgdir}"/usr/share/oh-my-posh/themes/*.json
}
For some reason the files are completely unreadable when extracted from the zip archive:
---------- 1 root root 3.7K Jun 3 21:35 /usr/share/oh-my-posh/themes/1_shell.omp.json
After adding the chmod command I can now set themes:
eval $(oh-my-posh prompt init zsh --config /usr/share/oh-my-posh/themes/1_shell.omp.json)
Thanks!
Kamack38 commented on 2022-04-26 19:54 (UTC)
Thanks kwaxi!
kwaxi commented on 2022-04-23 08:20 (UTC) (edited on 2022-04-23 10:49 (UTC) by kwaxi)
Suggesting the following patch to enable multi-arch package:
diff --git a/PKGBUILD b/PKGBUILD
index cc99af0..8fcf6d8 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,17 +1,24 @@
# Maintainer: Kamack38 <kamack38.biznes@gmail.com>
_pkgname='oh-my-posh'
pkgname="${_pkgname}-bin"
-pkgver=7.67.0
+pkgver=7.69.0
pkgrel=1
pkgdesc="A prompt theme engine for any shell."
-arch=('x86_64')
+arch=('x86_64' 'armv7h' 'aarch64')
url="https://github.com/JanDeDobbeleer/oh-my-posh"
license=('MIT')
makedepends=('curl' 'grep' 'sed' 'unzip')
provides=("${_pkgname}")
conflicts=("${_pkgname}")
-source=("https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v$pkgver/posh-linux-amd64")
-sha256sums=('aeb46c8074de88338bb9061df80d50d780972ef088835bc439b616be2dab58df')
+source=("https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v$pkgver/themes.zip")
+source_x86_64+=("https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v$pkgver/posh-linux-amd64")
+source_armv7h+=("https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v$pkgver/posh-linux-arm")
+source_aarch64+=("https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v$pkgver/posh-linux-arm64")
+noextract=('themes.zip')
+sha256sums=('2e4a76dbc19644903a5c651ae0eb62a8bf9ca47b9045d4d342cd8413cd58c20a')
+sha256sums_x86_64+=('f4f084fc2a81a06e5cae794ffb00dc6102af5fcb91290627e95ccb3c3c4d2275')
+sha256sums_armv7h+=('e6cf6ece8a70bd89c23eea8564b20d0cebe610a7b14d65e484ff9eed673e1326')
+sha256sums_aarch64+=('a7b9f0a4f2395bd80616cffda3dc6917bb241c1219f48191e4532420f014cd61')
pkgver() {
curl --silent -L "https://api.github.com/repos/JanDeDobbeleer/oh-my-posh/releases/latest" | # Get latest release from GitHub api
@@ -21,5 +28,14 @@ pkgver() {
}
package() {
- install -Dm 755 posh-linux-amd64 "${pkgdir}/usr/bin/oh-my-posh"
+ if [[ "$CARCH" = 'x86_64' ]]; then
+ install -Dm 755 posh-linux-amd64 "${pkgdir}/usr/bin/oh-my-posh"
+ elif [[ "$CARCH" = 'armv7h' ]]; then
+ install -Dm 755 posh-linux-arm "${pkgdir}/usr/bin/oh-my-posh"
+ elif [[ "$CARCH" = 'aarch64' ]]; then
+ install -Dm 755 posh-linux-arm64 "${pkgdir}/usr/bin/oh-my-posh"
+ fi
+
+ mkdir -p "${pkgdir}/usr/share/oh-my-posh/themes"
+ unzip "${srcdir}/themes.zip" -d "${pkgdir}/usr/share/oh-my-posh/themes"
}
kwaxi commented on 2022-04-19 07:25 (UTC)
Is there a plan to include the Oh My Posh themes in the package?
Pinned Comments
Kamack38 commented on 2023-07-29 20:01 (UTC) (edited on 2023-07-29 20:03 (UTC) by Kamack38)
Please do NOT flag this package out of date. This package is updated daily at 18:30 UTC by an automatic GitHub action here.