e8d93e6b1d
- gui/ui: native GTK4 widget vocabulary (.tn-*) behind the ui.* seam, default backend now native; style_apple.css design language - shell: sidebar/topbar/content all #0f0f0f in dark (matches eww panels) - new pages: wine, online_accounts - packaging: tanin-icons (accent folder theme), tanin-calendar, gtklock, taninux-gtk3-theme, flatpak install handler - iso/distro: profile + manifest tweaks (ISO binary not included)
33 lines
1.2 KiB
Bash
33 lines
1.2 KiB
Bash
# Maintainer: Karim <karim@gabrielevarano.ch>
|
|
#
|
|
# taninux-gtk3-theme — eigenständiges GTK3-Theme für die TANINUX Apple-Optik.
|
|
# Kein adw-gtk3 als Basis nötig: Adwaita (mit GTK3 geliefert) liefert die
|
|
# Struktur, dieses Theme überschreibt alle Farben, Formen und Abstände.
|
|
#
|
|
# Liefert zwei Varianten:
|
|
# /usr/share/themes/TANINUX/gtk-3.0/gtk.css Light
|
|
# /usr/share/themes/TANINUX-dark/gtk-3.0/gtk.css Dark
|
|
#
|
|
# TANINUX wählt die passende Variante via gtk-theme gsetting und schreibt
|
|
# bei Akzentänderungen ~/.themes/TANINUX{,-dark}/gtk-3.0/gtk.css als
|
|
# User-Override (gleicher Mechanismus wie bei tanin-icons).
|
|
#
|
|
# CSS neu generieren nach Stil-Änderungen in gui/style.py:
|
|
# cd packaging/taninux-gtk3-theme
|
|
# PYTHONPATH=../../src python generate.py
|
|
pkgname=taninux-gtk3-theme
|
|
pkgver=0.1.0
|
|
pkgrel=1
|
|
pkgdesc="TANINUX GTK3 Apple-Optik theme — eigenständig, kein adw-gtk3 nötig"
|
|
arch=('any')
|
|
url="https://taninux.kgva.ch"
|
|
license=('GPL-3.0-or-later')
|
|
depends=('gtk3')
|
|
|
|
package() {
|
|
install -Dm644 "$startdir/TANINUX/gtk-3.0/gtk.css" \
|
|
"$pkgdir/usr/share/themes/TANINUX/gtk-3.0/gtk.css"
|
|
install -Dm644 "$startdir/TANINUX-dark/gtk-3.0/gtk.css" \
|
|
"$pkgdir/usr/share/themes/TANINUX-dark/gtk-3.0/gtk.css"
|
|
}
|