惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

MyScale Blog
MyScale Blog
T
The Blog of Author Tim Ferriss
博客园 - 三生石上(FineUI控件)
博客园_首页
WordPress大学
WordPress大学
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
The GitHub Blog
The GitHub Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
F
Fortinet All Blogs
B
Blog RSS Feed
Stack Overflow Blog
Stack Overflow Blog
Microsoft Security Blog
Microsoft Security Blog
雷峰网
雷峰网
GbyAI
GbyAI
M
MIT News - Artificial intelligence
I
InfoQ
阮一峰的网络日志
阮一峰的网络日志
Recent Announcements
Recent Announcements
小众软件
小众软件
量子位
S
SegmentFault 最新的问题
Google DeepMind News
Google DeepMind News
Vercel News
Vercel News
aimingoo的专栏
aimingoo的专栏

AUR Newest Packages

AUR (en) - linuxqq-clipsync-git AUR (en) - libtslitex-git AUR (en) - libtslitex-git AUR (en) - carton-appimage AUR (en) - veila-git AUR (en) - veila-bin AUR (en) - vigil-baseline AUR (en) - byedroid AUR (en) - neovim-base16-git AUR (en) - pirata AUR (en) - rpi-imager-git-non-root AUR (en) - python-fastapi-sso AUR (en) - tmux-ai-titles AUR (en) - zeed-bin AUR (en) - bclone-bin AUR (en) - dwl-git-azerty AUR (en) - auggie-bin AUR (en) - libspatialaudio-git AUR (en) - libspatialaudio AUR (en) - miniupnpd-iptables-legacy AUR (en) - miniupnpd-nft AUR (en) - jeeves-bin AUR (en) - opennow AUR (en) - rotki AUR (en) - kapi-bin AUR (en) - classfi-bin AUR (en) - classfi-git AUR (en) - classfi AUR (en) - giff-git AUR (en) - budget-tracker-bin
AUR (en) - whitesur-gtk-theme-git
2026-06-17 · via AUR Newest Packages

Pinned Comments

AlphaJack commented on 2024-11-02 14:22 (UTC)

@HunabKu Thank you, I updated the PKGBUILD with your fix!

jonathon commented on 2021-09-11 20:23 (UTC)

This package provides the base theme (without tweaks) as configured for the upstream tagged releases.

HunabKu commented on 2025-11-18 10:28 (UTC) (edited on 2025-11-18 10:30 (UTC) by HunabKu)

install: impossible d'évaluer 'src/other/plank/theme-Dark/*': Aucun fichier ou dossier de ce nom

English (translated) :

Unable to evaluate 'src/other/plank/theme-Dark/*': No file or directory with that name

AlphaJack commented on 2025-05-07 21:43 (UTC)

@t3pfaffe I couldn't fix it with your prepare(), I had to remove the "--libadwaita" flag

@HunabKu Can you retry to install it now?

HunabKu commented on 2025-05-07 09:36 (UTC)

The themes no longer appears on /usr/share/themes/. but it appears with no -git version (whitesur-gtk-theme)

t3pfaffe commented on 2025-04-22 19:28 (UTC) (edited on 2025-04-22 19:40 (UTC) by t3pfaffe)

I've been running into issues updating this pkg, the ./install.sh command complains about --libadwaita being run as root and seemingly soft failing the installation as a result. I had to change the PKGBUILD around to avoid using sudo by adding a prepare() function and stripping any sudo calls from within the ./install.sh script before running it. It appears to have worked, although it's a very hacky solution, so your mileage may vary.

This seems to be a new issue with the installation script, as several issue threads on the matter have popped up over the past day within the upstream repo. I have attached the patch for my changes below, in-case anyone runs into the same problem:

From 5bd28eea8ebba8073c0ccc23288447b34ed3c3a9 Mon Sep 17 00:00:00 2001
From: Tom Pfaffe <t3@pfaffe.me>
Date: Tue, 22 Apr 2025 15:22:52 -0400
Subject: [PATCH] fix: allow --libadwaita under fakeroot by patching install.sh

---
PKGBUILD | 18 ++++++++++++++++--
1 file changed, 16 insertions(+), 2 deletions(-)

diff --git a/PKGBUILD b/PKGBUILD
index 1c096c1..7388c91 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -20,11 +20,25 @@ provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
options=('!strip')
source=(git+$url.git)
-b2sums=('SKIP')
+sha256sums=('SKIP')

pkgver() {
  cd WhiteSur-gtk-theme
-  git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
+  git describe --long --tags \
+    | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
+}
+
+prepare() {
+  cd WhiteSur-gtk-theme
+
+  # remove any sudo invocations
+  sed -i 's/\bsudo\b//g' install.sh
+
+  # make the libadwaita guard always true
+  sed -i 's/if \[\[ "\$UID" != '\''0'\'' \]\]/if true/' install.sh
+
+  # drop the “do not run --libadwaita as root” prompt
+  sed -i '/prompt -e "Do not run '\''--libadwaita'\'' option with sudo!"/d' install.sh
}

package() {
-- 
2.49.0

HunabKu commented on 2024-11-04 18:51 (UTC)

AlphaJack commented on 2024-11-02 14:22 (UTC)

@HunabKu Thank you, I updated the PKGBUILD with your fix!

HunabKu commented on 2024-08-31 10:52 (UTC) (edited on 2024-08-31 13:35 (UTC) by HunabKu)

Hi, i have this error on the last commit :

ERROR: Unrecognized installation option '--icon'.

ERROR: Unrecognized installation option 'arch'.

Just comment "--icon arch" not works, need to remove it and make on one line :

./install.sh --alt all --theme all --libadwaita --dest "$pkgdir/usr/share/themes"

xiota commented on 2024-08-26 00:23 (UTC) (edited on 2024-11-02 21:40 (UTC) by xiota)

This package installs files to /usr/share/docs. The path should be usr/share/doc (no trailing s). Can confirm path by running pacman -Fl | grep 'usr/share/doc/'

Sharky009 commented on 2024-01-01 10:44 (UTC)

@elamperti Seems pamac has problems with the spinner animation the installer script uses. But that's only a guess because i didn't looked further in it. I noticed it works with yay and that was fine for me.

elamperti commented on 2023-12-29 14:01 (UTC)

@Sharky009 You are right indeed! Tried an update directly from yay and it works. Any clue on why this error happens? This should work regardless of client preferences...