webkit-wallpaper
LOW
maintainer ekoputrapratama
0 votes
scanned 2026-08-19 15:42:02.122486
Why flagged
The package builds from source hosted on the project's own GitHub repository, which is normal for AUR packages; the low severity is due to few votes and recent upload, not malicious content.
Triggered rules
Low
Few votes, recently uploaded
zero_votes_recent
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
Low
AI review
llm_review
An AI model (qwen/qwen3-235b-a22b-2507) reviewed this and agrees it is LOW (confidence 95%): The package builds from source hosted on the project's own GitHub repository, which is normal for AUR packages; the low severity is due to few votes and recent upload, not malicious content.
PKGBUILD
1
# Maintainer: ekoputrapratama <ekoputrapratama@github.com>
2
pkgname=webkit-wallpaper
3
pkgver=0.1.0
4
pkgrel=1
5
pkgdesc="Linux desktop wallpaper powered by a webview - use any web page or WebGL shader as your background"
6
arch=('any')
7
url="https://github.com/ekoputrapratama/webkit_wallpaper"
8
license=('MIT')
9
depends=(
10
'python'
11
'python-gobject'
12
'gtk3'
13
'webkit2gtk-4.1'
14
)
15
makedepends=(
16
'python-setuptools'
17
)
18
optdepends=(
19
'gtk-layer-shell: Wayland layer shell support (Sway, Hyprland, COSMIC, KDE)'
20
'libayatana-appindicator: System tray icon'
21
)
22
source=("${url}/archive/refs/tags/v${pkgver}.tar.gz")
23
sha256sums=('SKIP')
24
25
build() {
26
cd "${srcdir}/webkit_wallpaper-${pkgver}"
27
python setup.py build
28
}
29
30
package() {
31
cd "${srcdir}/webkit_wallpaper-${pkgver}"
32
python setup.py install --root="${pkgdir}" --optimize=1
33
34
# Install desktop file
35
install -Dm644 /dev/stdin "${pkgdir}/usr/share/applications/${pkgname}.desktop" <<EOF
36
[Desktop Entry]
37
Type=Application
38
Name=WebKit Wallpaper
39
Comment=Web-based desktop wallpaper
40
Exec=webkit_wallpaper
41
Icon=preferences-desktop-wallpaper
42
Terminal=false
43
StartupNotify=false
44
Categories=Utility;
45
EOF
46
47
# Install icon
48
install -Dm644 "webkit_wallpaper/assets/webkit-wallpaper.png" \
49
"${pkgdir}/usr/share/pixmaps/${pkgname}.png"
50
51
# Install license
52
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
53
}
54
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-19 15:42:02 | Low | 2 |